
package uk.co.wingpath.io;

import java.io.IOException;
import uk.co.wingpath.util.*;

/**
* Sub-class of RecoverableIOException used to report overrun errors.
*/
public class OverrunException
    extends RecoverableIOException
{
    /**
    * Constructs a <code>OverrunException</code> with the specified
    * message.
    * @param message the message to be passed in the exception.
    */
    public OverrunException (String message)
    {
        super ("I118", message);
    }
}

