Exemplo n.º 1
0
 public static ListBaseException add(
     ListBaseException exceptions, DynClassName name, Exception ex) {
   if (exceptions == null) {
     exceptions = new CheckDynClassListException(name);
   }
   exceptions.add(ex);
   return exceptions;
 }
Exemplo n.º 2
0
 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;
 }