| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.w3c.tools.resources.IllegalAttributeAccess
IllegalAttributeAccess | public class IllegalAttributeAccess extends RuntimeException (Code) | | The generic exception for illegal attribute access.
Depending on this parameter this exception can indicate:
- That an attribute can't be set to a given value.
- That the attribute isn't defined for the given resource.
|
IllegalAttributeAccess | public IllegalAttributeAccess(AttributeHolder holder, Attribute attr)(Code) | | This attribute isn't defined by the given holder.
Parameters: holder - The holder that got the exception. Parameters: attr - The unknown atribute. |
IllegalAttributeAccess | public IllegalAttributeAccess(AttributeHolder holder, int idx)(Code) | | This attribute index isn't valid for the given holder.
Parameters: holder - The holder that got the exception. Parameters: idx - The erred index. |
IllegalAttributeAccess | public IllegalAttributeAccess(AttributeHolder holder, Attribute attr, Object value)(Code) | | The proposed value for the attribute doesn't match the expected type.
Parameters: holder - The holder that got the exception. Parameters: attribute - The attribute that you were trying to set. Parameters: value - The erred value. |
IllegalAttributeAccess | public IllegalAttributeAccess(AttributeHolder holder, Attribute attr, String accessor)(Code) | | Invalid access to an attribute value.
You used an invalid specific accessor to get the value of an attribute.
Parameters: holder - The holder that got the exception. Parameters: attr - The attribute that was accessed. Parameters: accessor - The name of the invalid accessor used. |
IllegalAttributeAccess | public IllegalAttributeAccess(AttributeHolder holder, String name)(Code) | | Invalid access to an attribute.
Parameters: golder - The attribute holder. Parameters: name - The name of the attribute that wan't found. |
|
|