Class ConfigurationException

  • All Implemented Interfaces:
    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.
    See Also:
    Serialized Form
    • Constructor Detail

      • ConfigurationException

        public ConfigurationException()
        Constructs a ConfigurationException without error message.
        See Also:
        Exception()
      • ConfigurationException

        public ConfigurationException​(String message)
        Constructs a ConfigurationException with the given error message.
        Parameters:
        message - the error message
        See Also:
        Exception(java.lang.String)
      • ConfigurationException

        public ConfigurationException​(Throwable cause)
        Constructs a ConfigurationException which wraps another exception.
        Parameters:
        cause - The initial exception which was caught.
        See Also:
        Exception(java.lang.Throwable)
      • ConfigurationException

        public ConfigurationException​(String message,
                                      Throwable cause)
        Constructs a ConfigurationException which wraps another exception, and which has its own error message.
        Parameters:
        message - The error message.
        cause - The exception to wrap.
        See Also:
        Exception(java.lang.String, java.lang.Throwable)