Package com.caplin.jtm.exceptions
Class TransformerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.caplin.jtm.exceptions.TransformerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DataCachePutException
,PersistenceException
The base class for all exceptions thrown by the Transformer.
It will be thrown to indicate that a problem has been encountered whilst performing an operation.
- See Also:
-
Constructor Summary
ConstructorDescriptionTransformerException
(String message) Constructs a TransformerException with the specified 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 TransformerException with the specified message.
- Parameters:
message
- A description of what caused the exception.
-