package anastore.util;

/**
 * Runtime exception version of InterruptedException
 */
public class ProtocolInterruptedException extends RuntimeException
{
    public ProtocolInterruptedException()
    {
        super();
    }

    public ProtocolInterruptedException(String message)
    {
        super(message);
    }

    public ProtocolInterruptedException(String message, Throwable cause)
    {
        super(message, cause);
    }

    public ProtocolInterruptedException(Throwable cause)
    {
        super(cause);
    }
}
