1 /*2 * Created on 12.07.20043 */4 package net.sourceforge.pmd.dfa;5 6 /**7 * @author raik8 */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 }20