Klasse ConfigurationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.torque.generator.GeneratorException
org.apache.torque.generator.configuration.ConfigurationException
Alle implementierten Schnittstellen:
Serializable

public class ConfigurationException extends GeneratorException
This exception is thrown if the Torque generator cannot access its configuration or if an error occurs accessing the configuration.
Siehe auch:
  • Konstruktordetails

    • ConfigurationException

      public ConfigurationException()
      Constructs a ConfigurationException without error message.
      Siehe auch:
    • ConfigurationException

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

      public ConfigurationException(Throwable cause)
      Constructs a ConfigurationException which wraps another exception.
      Parameter:
      cause - The initial exception which was caught.
      Siehe auch:
    • ConfigurationException

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