01: package fit.exception; 02: 03: public class BooleanMethodFitFailureException extends 04: FitFailureException { 05: 06: private static final long serialVersionUID = 1L; 07: 08: public BooleanMethodFitFailureException(String name) { 09: super ("Method " + name + " does not return a boolean."); 10: } 11: 12: }