1 20 package org.enhydra.barracuda.core.forms; 21 22 import java.io.*; 23 import java.util.*; 24 25 import org.enhydra.barracuda.plankton.exceptions.NestableException; 26 27 34 public class UnableToValidateException extends ValidationException { 35 36 protected List subExceptions = null; 37 38 41 public UnableToValidateException () {super(null);} 42 43 49 public UnableToValidateException (Object source) {super(source, null);} 50 51 58 public UnableToValidateException (Object source, String s) {super(source, s, null);} 59 60 68 public UnableToValidateException (Object source, String s, Exception ibaseException) {super(source, s, ibaseException);} 69 70 } 71 | Popular Tags |