Package com.karuslabs.elementary
Class CompilationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.karuslabs.elementary.CompilationException
- All Implemented Interfaces:
Serializable
Indicates that compilation has failed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCompilationException(String message) Creates aCompilationExceptionwith the given error message.CompilationException(String message, Throwable e) Creates aCompilationExceptionwith the given error message and underlying exception.CompilationException(List<String> messages) Creates aCompilationExceptionwith the given error messages. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CompilationException
Creates aCompilationExceptionwith the given error messages.- Parameters:
messages- the error messages
-
CompilationException
Creates aCompilationExceptionwith the given error message.- Parameters:
message- the error message
-
CompilationException
Creates aCompilationExceptionwith the given error message and underlying exception.- Parameters:
message- the error messagee- the underlying exception
-