89909192939495
/** * Throws an ApplicationException when invoked */ public void throwApplicationException() throws ApplicationException { throw new ApplicationException("Testing ability to throw Application Exceptions"); }
105106107108109110111
/** * Throws an ApplicationException when invoked */ public void throwApplicationException() throws ApplicationException { throw new ApplicationException("Don't Panic"); }
100101102103104105106
71727374757677
121122123124125126127
/** * Throws an ApplicationException when invoked * */ public void throwApplicationException() throws ApplicationException{ throw new ApplicationException("Testing ability to throw Application Exceptions"); }
48495051525354
/** * Throws an ApplicationException when invoked * */ public void throwApplicationException() throws ApplicationException { throw new ApplicationException("Testing ability to throw Application Exceptions"); }
949596979899100
67686970717273
91929394959697
/** * Throws an ApplicationException when invoked */ @Override public void throwApplicationException() throws ApplicationException { throw new ApplicationException("Testing ability to throw Application Exceptions"); }
69707172737475