Package org.apache.torque.generator
Klasse GeneratorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.torque.generator.GeneratorException
- Alle implementierten Schnittstellen:
Serializable
- Bekannte direkte Unterklassen:
ConfigurationException
,ControllerException
,SourceException
,SourceTransformerException
This exception is the superclass of all Exceptions thrown in the Torque
generator. It is thrown whenever an Error occurs which is specific
to the Torque Generator.
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConstructs a OutletException without error message.GeneratorException
(String message) Constructs a GeneratorException with the given error message.GeneratorException
(String message, Throwable cause) Constructs a GeneratorException which wraps another exception, and which has its own error message.GeneratorException
(Throwable cause) Constructs a GeneratorException which wraps another exception. -
Methodenübersicht
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
GeneratorException
public GeneratorException()Constructs a OutletException without error message. -
GeneratorException
Constructs a GeneratorException with the given error message.- Parameter:
message
- the error message- Siehe auch:
-
GeneratorException
Constructs a GeneratorException which wraps another exception.- Parameter:
cause
- The cause of the error.- Siehe auch:
-
GeneratorException
Constructs a GeneratorException which wraps another exception, and which has its own error message.- Parameter:
message
- The error message.cause
- The exception to wrap.- Siehe auch:
-