/** * * This is a generic exception type that is thrown by the compound * parser in the SLD calculator. If you specify an improper compound * You will get this exception. * */ public class BadCompoundException extends Exception { public BadCompoundException () { super(); } public BadCompoundException (String s) { super(s); } }