Package jaxx.compiler
Class CompilerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jaxx.compiler.CompilerException
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ParseException,UnsupportedAttributeException,UnsupportedTagException
public class CompilerException
extends java.lang.RuntimeException
Thrown by the compiler when an error occurs.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description CompilerException()Creates a newParseException.CompilerException(java.lang.String msg)Creates a newParseExceptionwith the specified detail message.CompilerException(java.lang.String msg, java.lang.Throwable initCause)Creates a newParseExceptionwith the specified detail message and cause.CompilerException(java.lang.Throwable initCause)Creates a newParseExceptionwith the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
CompilerException
public CompilerException()Creates a newParseException. -
CompilerException
public CompilerException(java.lang.String msg)Creates a newParseExceptionwith the specified detail message.- Parameters:
msg- the exception's detail message
-
CompilerException
public CompilerException(java.lang.Throwable initCause)Creates a newParseExceptionwith the specified cause.- Parameters:
initCause- the exception's initCause
-
CompilerException
public CompilerException(java.lang.String msg, java.lang.Throwable initCause)Creates a newParseExceptionwith the specified detail message and cause.- Parameters:
msg- the exception's detail messageinitCause- the exception's initCause
-