Class TransformerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.craftsblock.craftsnet.api.transformers.exceptions.TransformerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NotTransformableException
This class represents an exception that occurs during data transformation operations.
It extends the RuntimeException class, making it an unchecked exception.
- Since:
- 3.0.2-SNAPSHOT
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTransformerException(String message) Constructs a new TransformerException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TransformerException
Constructs a new TransformerException with the specified detail message.- Parameters:
message- The detail message (which is saved for later retrieval by the getMessage() method) describing the cause of the exception.
-