Package org.rapidcontext.util
Class BaseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.rapidcontext.util.BaseException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConnectionException,JsException,ProcedureException,StorageException
An abstract base exception. This class exists to make it easy to
catch any type of checked exception.
- Version:
- 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBaseException(String message) Creates a new base exception.BaseException(String message, Throwable e) Creates a new base exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BaseException
Creates a new base exception.- Parameters:
message- the detailed error message
-
BaseException
Creates a new base exception.- Parameters:
message- the detailed error messagee- the base exception
-