KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jester > ConfigurationException


1 package jester;
2
3 public class ConfigurationException extends SourceChangeException {
4
5     //TODO not logically a SourceChangeException - need to sort out exceptions properly
6

7     public ConfigurationException() {
8         super();
9     }
10
11     public ConfigurationException(String JavaDoc arg0) {
12         super(arg0);
13     }
14 }
15
Popular Tags