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 33 public class DeferredValidationException extends ValidationException { 34 35 protected List subExceptions = null; 36 37 40 public DeferredValidationException () {super(null);} 41 42 48 public DeferredValidationException (Object source) {super(source, null);} 49 50 57 public DeferredValidationException (Object source, String s) {super(source, s, null);} 58 59 67 public DeferredValidationException (Object source, String s, Exception ibaseException) {super(source, s, ibaseException);} 68 69 } 70 | Popular Tags |