
package uk.co.wingpath.io;

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

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

