1 /**
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package net.sourceforge.pmd.lang.dfa;
5
6 /**
7 * @author raik
8 */
9 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 }