Package com.github.kokorin.jaffree
Class JaffreeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.kokorin.jaffree.JaffreeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JaffreeAbnormalExitException
Common exception used in this library.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJaffreeException(String message) Constructs a newJaffreeExceptionwith the specified detail message.JaffreeException(String message, Throwable cause) Constructs a newJaffreeExceptionwith the specified detail message and cause.JaffreeException(String message, Throwable cause, List<Throwable> suppressed) Constructs a newJaffreeExceptionwith the specified message, cause and suppressed exceptions.JaffreeException(String message, List<Throwable> causeAndSuppressed) Constructs a newJaffreeExceptionwith the specified message, cause and suppressed exceptions. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JaffreeException
Constructs a newJaffreeExceptionwith the specified detail message.- Parameters:
message- message
-
JaffreeException
Constructs a newJaffreeExceptionwith the specified detail message and cause.- Parameters:
message- messagecause- cause
-
JaffreeException
Constructs a newJaffreeExceptionwith the specified message, cause and suppressed exceptions.- Parameters:
message- messagecauseAndSuppressed- first exception is the cause, others - suppressed
-
JaffreeException
Constructs a newJaffreeExceptionwith the specified message, cause and suppressed exceptions.- Parameters:
message- messagecause- causesuppressed- suppressed exceptions
-