01: /*
02: * Created on 12.07.2004
03: */
04: package net.sourceforge.pmd.dfa;
05:
06: /**
07: * @author raik
08: */
09: public class LinkerException extends Exception {
10:
11: public LinkerException() {
12: super ("An error occured by computing the data flow paths"); //TODO redefinition | accurate?
13: }
14:
15: public LinkerException(String message) {
16: super(message);
17: }
18:
19: }
|