java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
- All Implemented Interfaces:
Serializable
,ErrorCodeAccessor
,Trap
- Direct Known Subclasses:
BugException
,DisposedException
,IntegrityException
,LockedException.LockedRuntimeException
,RuntimeIOException
,VerifyRuntimeException
,VetoException.VetoRuntimeException
Base exception for runtime (unchecked) / predictable (testable states)
exceptions, providing functionality for exception specific multi-language
messages. Regarding unchecked exception, "The Java Programming Language", by
Gosling, Arnold, and Holmes says "... Unchecked runtime exceptions represent
conditions that, generally speaking, reflect errors in your program's logic
and cannot be reasonably recovered from at run time ...". Though you as a
programmer can take care by according (business) logic to prevent such
exception. Such exceptions may be accessing disposed components or any other
aCause where you can test a state beforehand.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor
ErrorCodeAccessor.ErrorCodeBuilder<B extends ErrorCodeAccessor.ErrorCodeBuilder<B>>, ErrorCodeAccessor.ErrorCodeMutator, ErrorCodeAccessor.ErrorCodeProperty
-
Constructor Summary
ConstructorDescriptionAbstractRuntimeException
(String aMessage) Instantiates a new according exception.AbstractRuntimeException
(String aMessage, String aErrorCode) Instantiates a new according exception.AbstractRuntimeException
(String aMessage, Throwable aCause) Instantiates a new according exception.AbstractRuntimeException
(String aMessage, Throwable aCause, String aErrorCode) Instantiates a new according exception.AbstractRuntimeException
(Throwable aCause) Instantiates a new according exception.AbstractRuntimeException
(Throwable aCause, String aErrorCode) Instantiates a new according exception. -
Method Summary
Modifier and TypeMethodDescriptionProvides the according exception code.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.refcodes.exception.Trap
getPatternArguments, toLocalizedMessage, toMessage, toMessage, toMessage, toShortLocalizedMessage, toShortMessage
-
Constructor Details
-
AbstractRuntimeException
Instantiates a new according exception. -
AbstractRuntimeException
Instantiates a new according exception.- Parameters:
aMessage
- The aMessage describing this exception.
-
AbstractRuntimeException
Instantiates a new according exception. -
AbstractRuntimeException
Instantiates a new according exception.- Parameters:
aMessage
- - the detail aMessage (which is saved for later retrieval by the Throwable.getMessage() method).aCause
- - the aCause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the aCause is nonexistent or unknown.)aErrorCode
- The exception code to be assigned to the exception. An exception code can be provided when creating an exception and it can be used by the business logic to retrieve a language depended exception aMessage (multi-language support) from a language pack instead of just providing the single language aMessage as being stored by the default exceptions.
-
AbstractRuntimeException
Instantiates a new according exception.- Parameters:
aMessage
- - the detail aMessage (which is saved for later retrieval by the Throwable.getMessage() method).aErrorCode
- The exception code to be assigned to the exception. An exception code can be provided when creating an exception and it can be used by the business logic to retrieve a language depended exception aMessage (multi-language support) from a language pack instead of just providing the single language aMessage as being stored by the default exceptions.
-
AbstractRuntimeException
Instantiates a new according exception.- Parameters:
aCause
- - the aCause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the aCause is nonexistent or unknown.)aErrorCode
- The exception code to be assigned to the exception. An exception code can be provided when creating an exception and it can be used by the business logic to retrieve a language depended exception aMessage (multi-language support) from a language pack instead of just providing the single language aMessage as being stored by the default exceptions.
-
-
Method Details
-
getMessage
- Overrides:
getMessage
in classThrowable
-
getErrorCode
Provides the according exception code. An exception code can be provided when creating an exception and it can be used by the business logic to retrieve a language depended exception aMessage (multi-language support) from a language pack instead of just providing the single language aMessage as being stored by the default exceptions.- Specified by:
getErrorCode
in interfaceErrorCodeAccessor
- Returns:
- The exception code in question.
-