org.apache.batik.dom.svg
public class LiveAttributeException extends RuntimeException
Field Summary | |
---|---|
protected String | attributeName
The attribute name. |
protected short | code
The reason for the exception. |
protected Element | e
The element on which the error occured. |
static short | ERR_ATTRIBUTE_MALFORMED |
static short | ERR_ATTRIBUTE_MISSING |
static short | ERR_ATTRIBUTE_NEGATIVE |
protected String | value
The malformed attribute value. |
Constructor Summary | |
---|---|
LiveAttributeException(Element e, String an, short code, String val)
Constructs a new LiveAttributeException with the specified
parameters.
|
Method Summary | |
---|---|
String | getAttributeName()
Returns the attribute name. |
short | getCode()
Returns the error code. |
Element | getElement()
Returns the element on which the error occurred. |
String | getValue()
Returns the problematic attribute value. |
Parameters: e the element on which the error occured an the attribute name code the error code val the malformed attribute value