//#########################################################
// SystemException
// The SystemException class extends the Exception class
// and is used by the servlet to report the errors that
// it encountered while running its dissemination method.
//#########################################################
package Servlet.Interface;

public class SystemException extends Exception
{
    int status = 0;
    public SystemException(int status, String ExceptionMessage)
    {
        super(ExceptionMessage);
        this.status = status;
    }

    public int getStatus()
    {
        return status;
    }
}