Class GeneratorException

    • Constructor Detail

      • GeneratorException

        public GeneratorException()
        Constructs a OutletException without error message.
      • GeneratorException

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

        public GeneratorException​(Throwable cause)
        Constructs a GeneratorException which wraps another exception.
        Parameters:
        cause - The cause of the error.
        See Also:
        Exception(java.lang.Throwable)
      • GeneratorException

        public GeneratorException​(String message,
                                  Throwable cause)
        Constructs a GeneratorException 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)