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"

UML Diagram for "org.tquadrat.foundation.javacomposer.JavaComposerException"

UML Diagram for "org.tquadrat.foundation.javacomposer.JavaComposerException"
  • Constructor Details

    • JavaComposerException

      public JavaComposerException(String message)
      Constructs a new instance of JavaComposerException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(Throwable).
      Parameters:
      message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
    • JavaComposerException

      public JavaComposerException(String message, Throwable cause)
      Constructs a new instance of JavaComposerException 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 the Throwable.getMessage() method.
      cause - The cause which is saved for later retrieval by the Throwable.getCause() method. A null value is permitted, and indicates that the cause is nonexistent or unknown.