Class SourceTransformerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.torque.generator.GeneratorException
org.apache.torque.generator.source.transform.SourceTransformerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NoSuchPropertyException,PropertyNotReadableException,PropertyNotWriteableException
This exception is the superclass of all Exceptions thrown by
SourceTransformers.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a SourceTransformerException without error message.SourceTransformerException(String message) Constructs a SourceTransformerException with the given error message.SourceTransformerException(String message, Throwable cause) Constructs a SourceTransformerException which wraps another exception, and which has its own error message.Constructs a SourceTransformerException which wraps another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SourceTransformerException
public SourceTransformerException()Constructs a SourceTransformerException without error message. -
SourceTransformerException
Constructs a SourceTransformerException with the given error message.- Parameters:
message- the error message- See Also:
-
SourceTransformerException
Constructs a SourceTransformerException which wraps another exception.- Parameters:
cause- The root message.- See Also:
-
SourceTransformerException
Constructs a SourceTransformerException which wraps another exception, and which has its own error message.- Parameters:
message- The error message.cause- The exception to wrap.- See Also:
-