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 31 public class ParseException extends ValidationException { 32 33 protected List subExceptions = null; 34 35 38 public ParseException () {super(null);} 39 40 46 public ParseException (Object source) {super(source, null);} 47 48 55 public ParseException (Object source, String s) {super(source, s, null);} 56 57 65 public ParseException (Object source, String s, Exception ibaseException) {super(source, s, ibaseException);} 66 67 } 68 | Popular Tags |