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