Klasse SourceTransformerException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.torque.generator.GeneratorException
org.apache.torque.generator.source.transform.SourceTransformerException
Alle implementierten Schnittstellen:
Serializable
Bekannte direkte Unterklassen:
NoSuchPropertyException, PropertyNotReadableException, PropertyNotWriteableException

public class SourceTransformerException extends GeneratorException
This exception is the superclass of all Exceptions thrown by SourceTransformers.
Siehe auch:
  • Konstruktordetails

    • SourceTransformerException

      public SourceTransformerException()
      Constructs a SourceTransformerException without error message.
    • SourceTransformerException

      public SourceTransformerException(String message)
      Constructs a SourceTransformerException with the given error message.
      Parameter:
      message - the error message
      Siehe auch:
    • SourceTransformerException

      public SourceTransformerException(Throwable cause)
      Constructs a SourceTransformerException which wraps another exception.
      Parameter:
      cause - The root message.
      Siehe auch:
    • SourceTransformerException

      public SourceTransformerException(String message, Throwable cause)
      Constructs a SourceTransformerException which wraps another exception, and which has its own error message.
      Parameter:
      message - The error message.
      cause - The exception to wrap.
      Siehe auch: