KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > attribute > AttributeException


1 package com.tirsen.nanning.attribute;
2
3 public class AttributeException extends RuntimeException JavaDoc {
4     public AttributeException(String JavaDoc message) {
5         super(message);
6     }
7
8 ///CLOVER:OFF
9
public AttributeException() {
10     }
11
12     public AttributeException(String JavaDoc message, Throwable JavaDoc cause) {
13         super(message, cause);
14     }
15
16     public AttributeException(Throwable JavaDoc cause) {
17         super(cause);
18     }
19 ///CLOVER:ON
20
}
21
Popular Tags