public static ListBaseException add( ListBaseException exceptions, DynClassName name, Exception ex) { if (exceptions == null) { exceptions = new CheckDynClassListException(name); } exceptions.add(ex); return exceptions; }
public static ListBaseException add( ListBaseException exceptions, DynClassName name, String attrname, Object attrvalue) { if (exceptions == null) { exceptions = new CheckDynClassListException(name); } exceptions.add(new CheckDynClassException(attrname, attrvalue)); return exceptions; }