Class CompilerException

    • Constructor Detail

      • CompilerException

        public CompilerException()
        Creates a compiler exception with no message and no cause.
      • CompilerException

        public CompilerException​(String message)
        Creates a compiler exception with the given message and no cause.
        Parameters:
        message - The message for the exception.
      • CompilerException

        public CompilerException​(Throwable cause)
        Creates a compiler exception with the given cause and no message.
        Parameters:
        cause - The Throwable that caused this exception.
      • CompilerException

        public CompilerException​(String message,
                                 Throwable cause)
        Creates a compiler exception with the given message and cause.
        Parameters:
        message - The message for the exception.
        cause - The Throwable that caused this exception.