javax.servlet.jsp.tagext

Class AttributeNotSupportedException

Implemented Interfaces:
Serializable

public class AttributeNotSupportedException
extends Exception

An exception for DynamicAttributes.
See Also:
Serialized Form

Constructor Summary

AttributeNotSupportedException()
Constructs a new throwable with null as its detail message.
AttributeNotSupportedException(String msg)
Constructs a new throwable with the specified detail message.

Method Summary

Methods inherited from class java.lang.Throwable

fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

Methods inherited from class java.lang.Object

clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Details

AttributeNotSupportedException

public AttributeNotSupportedException()
Constructs a new throwable with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(Throwable).

The Throwable.fillInStackTrace() method is called to initialize the stack trace data in the newly created throwable.


AttributeNotSupportedException

public AttributeNotSupportedException(String msg)
Constructs a new throwable with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(Throwable).

The Throwable.fillInStackTrace() method is called to initialize the stack trace data in the newly created throwable.

Parameters: