LinkerException.java
01 /**
02  * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03  */
04 package net.sourceforge.pmd.lang.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 }