01: package org.jicengine.element;
02:
03: /**
04: * <p>
05: * Signals an error in an attribute: the attribute is illegal, the value is
06: * illegal, etc. </p>
07: *
08: *
09: * @author timo laitinen
10: */
11: public class AttributeException extends ElementException {
12: public AttributeException(String message, String elementName,
13: Location location) {
14: super (message, elementName, location);
15: }
16:
17: public AttributeException(String message, Throwable cause,
18: String elementName, Location location) {
19: super (message, cause, elementName, location);
20: }
21:
22: public AttributeException(Throwable cause, String elementName,
23: Location location) {
24: super (cause, elementName, location);
25: }
26:
27: public AttributeException(Throwable cause, String elementName,
28: String attributeName, Location location) {
29: super(cause, elementName, attributeName, location);
30: }
31: }
|