KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jicengine > element > AttributeException


1 package org.jicengine.element;
2
3 /**
4  * <p>
5  * Signals an error in an attribute: the attribute is illegal, the value is
6  * illegal, etc. </p>
7  *
8  *
9  * @author timo laitinen
10  */

11 public class AttributeException extends ElementException {
12     public AttributeException(String JavaDoc message, String JavaDoc elementName, Location location)
13     {
14         super(message, elementName, location);
15     }
16
17     public AttributeException(String JavaDoc message, Throwable JavaDoc cause, String JavaDoc elementName, Location location)
18     {
19         super(message, cause, elementName, location);
20     }
21
22     public AttributeException(Throwable JavaDoc cause, String JavaDoc elementName, Location location)
23     {
24         super(cause, elementName, location);
25     }
26
27     public AttributeException(Throwable JavaDoc cause, String JavaDoc elementName, String JavaDoc attributeName, Location location)
28     {
29         super(cause, elementName, attributeName, location);
30     }
31 }
32
Popular Tags