Class JctCompilerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.ascopes.jct.ex.JctException
io.github.ascopes.jct.ex.JctCompilerException
- All Implemented Interfaces:
Serializable
Exception that is thrown if the compiler fails to run and throws an unhandled exception.
- Since:
- 0.0.1
- Author:
- Ashley Scopes
- See Also:
-
Constructor Summary
ConstructorDescriptionJctCompilerException
(String message) Initialize the error.JctCompilerException
(String message, @Nullable Throwable cause) Initialize the error. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JctCompilerException
Initialize the error.- Parameters:
message
- the error message.
-
JctCompilerException
Initialize the error.- Parameters:
message
- the error message.cause
- the cause of the error (ornull
if no cause exists).
-