public class CompilerException
extends java.lang.Exception
Compiler operations. Does nothing more
than give a different exception type to catch in a catch()
clause. This is a checked exception.| Constructor and Description |
|---|
CompilerException(java.lang.String msg)
Constructor which accepts message text.
|
CompilerException(java.lang.String msg,
java.lang.Throwable rootCause)
Constructor which accepts message text and root cause.
|
public CompilerException(java.lang.String msg)
msg - Message text.public CompilerException(java.lang.String msg,
java.lang.Throwable rootCause)
msg - Message text.rootCause - Exception which is the root cause of this exception.