Package org.nuiton.jaxx.compiler
Class CompilerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.nuiton.jaxx.compiler.CompilerException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ParseException,UnsupportedAttributeException,UnsupportedTagException
public class CompilerException extends RuntimeException
Thrown by the compiler when an error occurs.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompilerException()Creates a newParseException.CompilerException(String msg)Creates a newParseExceptionwith the specified detail message.CompilerException(String msg, Throwable initCause)Creates a newParseExceptionwith the specified detail message and cause.CompilerException(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, toString
-
-
-
-
Constructor Detail
-
CompilerException
public CompilerException()
Creates a newParseException.
-
CompilerException
public CompilerException(String msg)
Creates a newParseExceptionwith the specified detail message.- Parameters:
msg- the exception's detail message
-
CompilerException
public CompilerException(Throwable initCause)
Creates a newParseExceptionwith the specified cause.- Parameters:
initCause- the exception's initCause
-
-