Class EclibRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jp.ecuacion.lib.core.exception.unchecked.EclibRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ObjectsUtil.ObjectsUtilException
Is thorwn just like
RuntimeException whose message contains "ecuacion"
so that you can see the Ezxception is thrown from the library.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEclibRuntimeException(String message) Constructs a new instance withmassage.EclibRuntimeException(String message, Throwable cause) Constructs a new instance withmassageandcause.EclibRuntimeException(Throwable cause) Constructs a new instance withcause. -
Method Summary
Modifier and TypeMethodDescriptionReturns message with a prefix added by the library.Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EclibRuntimeException
Constructs a new instance withmassage.- Parameters:
message- message. May be null, which meaans it has no messages.
-
EclibRuntimeException
Constructs a new instance withcause.- Parameters:
cause- cause
-
EclibRuntimeException
Constructs a new instance withmassageandcause.- Parameters:
message- messagecause- cause
-
-
Method Details
-
getMessage
Returns message with a prefix added by the library.- Overrides:
getMessagein classThrowable- Returns:
- message message. May be null, which means message is null.
-