java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.cta4j.exception.Cta4jException
- All Implemented Interfaces:
Serializable
A custom exception class for handling cta4j specific errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCta4jException(String message) Constructs a new Cta4jException with the specified detail message.Cta4jException(String message, Throwable cause) Constructs a new Cta4jException with the specified detail message and 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
-
Cta4jException
Constructs a new Cta4jException with the specified detail message.- Parameters:
message- the detail message
-
Cta4jException
Constructs a new Cta4jException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of the exception
-