| java.lang.Object java.lang.Throwable java.lang.Exception org.apache.bsf.BSFException
BSFException | public class BSFException extends Exception (Code) | | If something goes wrong while doing some scripting stuff, one of these
is thrown. The integer code indicates what's wrong and the message
may give more details. The reason one exception with multiple meanings
(via the code) [instead of multiple exception types] is used is due to
the interest to keep the run-time size small.
author: Sanjiva Weerawarana |
REASON_EXECUTION_ERROR | final public static int REASON_EXECUTION_ERROR(Code) | | |
REASON_INVALID_ARGUMENT | final public static int REASON_INVALID_ARGUMENT(Code) | | |
REASON_IO_ERROR | final public static int REASON_IO_ERROR(Code) | | |
REASON_OTHER_ERROR | final public static int REASON_OTHER_ERROR(Code) | | |
REASON_UNKNOWN_LANGUAGE | final public static int REASON_UNKNOWN_LANGUAGE(Code) | | |
REASON_UNSUPPORTED_FEATURE | final public static int REASON_UNSUPPORTED_FEATURE(Code) | | |
BSFException | public BSFException(int reason, String msg)(Code) | | |
getReason | public int getReason()(Code) | | |
printStackTrace | public void printStackTrace()(Code) | | |
|
|