UnauthorizedException.java

package edu.rit.coopeval.authentication.beans;

/**
 * Created by mhickson on 5/8/15.
 */
public class UnauthorizedException extends Exception {

    public UnauthorizedException()
    {
    }

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

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

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

    public UnauthorizedException(String message, Throwable cause,
                           boolean enableSuppression, boolean writableStackTrace)
    {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}