Class JavaComposerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.tquadrat.foundation.javacomposer.JavaComposerException
- All Implemented Interfaces:
Serializable
@ClassVersion(sourceVersion="$Id: JavaComposerException.java 831 2021-01-05 17:25:46Z tquadrat $")
@API(status=STABLE,
since="0.1.0")
public final class JavaComposerException
extends RuntimeException
This implementation of
RuntimeException
will be thrown by methods of JavaComposer in case an error condition
is encountered.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: JavaComposerException.java 831 2021-01-05 17:25:46Z tquadrat $
- Since:
- 0.1.0
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.JavaComposerException"
-
Constructor Summary
ConstructorsConstructorDescriptionJavaComposerException
(String message) Constructs a new instance ofJavaComposerException
with the specified detail message.JavaComposerException
(String message, Throwable cause) Constructs a new instance ofJavaComposerException
with the specified detail message and a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JavaComposerException
Constructs a new instance ofJavaComposerException
with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(Throwable)
.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
JavaComposerException
Constructs a new instance ofJavaComposerException
with the specified detail message and a cause.- Note:
-
- The detail message associated with cause is not automatically incorporated in this error's detail message.
- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- The cause which is saved for later retrieval by theThrowable.getCause()
method. Anull
value is permitted, and indicates that the cause is nonexistent or unknown.
-