KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > dfa > LinkerException


1 /*
2  * Created on 12.07.2004
3  */

4 package net.sourceforge.pmd.dfa;
5
6 /**
7  * @author raik
8  */

9 public class LinkerException extends Exception JavaDoc {
10
11     public LinkerException() {
12         super("An error occured by computing the data flow paths"); //TODO redefinition | accurate?
13
}
14
15     public LinkerException(String JavaDoc message) {
16         super(message);
17     }
18
19 }
20
Popular Tags