Package jaxx.compiler
Class UnsupportedAttributeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jaxx.compiler.CompilerException
jaxx.compiler.UnsupportedAttributeException
- All Implemented Interfaces:
java.io.Serializable
public class UnsupportedAttributeException extends CompilerException
Thrown by
TagHandler when an unsupported attribute is encountered.- See Also:
TagHandler, Serialized Form
-
Constructor Summary
Constructors Constructor Description UnsupportedAttributeException()Creates a newUnsupportedAttributeException.UnsupportedAttributeException(java.lang.String msg)Creates a newUnsupportedAttributeExceptionwith the specified detail message.UnsupportedAttributeException(java.lang.String msg, java.lang.Throwable initCause)Creates a newUnsupportedAttributeExceptionwith the specified detail message and cause.UnsupportedAttributeException(java.lang.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, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
UnsupportedAttributeException
public UnsupportedAttributeException()Creates a newUnsupportedAttributeException. -
UnsupportedAttributeException
public UnsupportedAttributeException(java.lang.String msg)Creates a newUnsupportedAttributeExceptionwith the specified detail message.- Parameters:
msg- the exception's detail message
-
UnsupportedAttributeException
public UnsupportedAttributeException(java.lang.Throwable initCause)Creates a newUnsupportedAttributeExceptionwith the specified cause.- Parameters:
initCause- the exception's initCause
-
UnsupportedAttributeException
public UnsupportedAttributeException(java.lang.String msg, java.lang.Throwable initCause)Creates a newUnsupportedAttributeExceptionwith the specified detail message and cause.- Parameters:
msg- the exception's detail messageinitCause- the exception's initCause
-