Package org.nuiton.jaxx.compiler
Class UnsupportedTagException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.nuiton.jaxx.compiler.CompilerException
-
- org.nuiton.jaxx.compiler.UnsupportedTagException
-
- All Implemented Interfaces:
Serializable
public class UnsupportedTagException extends CompilerException
Thrown by the compiler when an unregistered tag is encountered.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsupportedTagException()Creates a newUnsupportedTagException.UnsupportedTagException(String msg)Creates a newUnsupportedTagExceptionwith the specified detail message.UnsupportedTagException(String msg, Throwable initCause)Creates a newUnsupportedTagExceptionwith the specified detail message and cause.UnsupportedTagException(Throwable initCause)Creates a newUnsupportedTagExceptionwith 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
-
UnsupportedTagException
public UnsupportedTagException()
Creates a newUnsupportedTagException.
-
UnsupportedTagException
public UnsupportedTagException(String msg)
Creates a newUnsupportedTagExceptionwith the specified detail message.- Parameters:
msg- the exception's detail message
-
UnsupportedTagException
public UnsupportedTagException(Throwable initCause)
Creates a newUnsupportedTagExceptionwith the specified cause.- Parameters:
initCause- the exception's initCause
-
-