4243444546474849
try { return dao.fetchAll(); } catch (DAOException e) { logcat.error("DAOError", e); throw new XMLDispatcherAppException(e.getMessage()); } }
121122123124125126127128129130131
{ publicMethodsField = c.getField(category); } catch(NoSuchFieldException e) { throw new XMLDispatcherAppException("Field " + category + " not found in class " + c.getName() + ", please regenerate"); } String[] publicMethods; try { publicMethods = (String[])publicMethodsField.get(null);
5657585960616263646566
{ if (type != null) { if (type.equals(XMLDispatcherAppException.type)) { xde = new XMLDispatcherAppException(description,code); } else if (type.equals(XMLDispatcherUserException.type)) { xde = new XMLDispatcherUserException(description,code); }