Implementation of PRePException

    Consists of the class which caused the exception, the exception itself and a number (errorlevel). The default errorlevel is 1. A list of PRePExceptions is stored in session

    Constructor:

    PRePException(Object objclass, Object objException)
    gets the class where the exception occurred and the Exception itself PRePException(Object objclass, Object objException, int iErrorlevel)
    gets the class, the exception and the errorlevel of the PRePException

    Methods:

    outException()
    returns a string with the class, exception and errorlevel

    getCausingClass()
    returns the class object

    getException()
    returns the Exception object

    getErrorlevel()
    returns the errorlevel

Back