76777879808182
/** * Throws an ApplicationException when invoked */ public void throwApplicationException() throws ApplicationException { throw new ApplicationException("Don't Panic"); }
48495051525354
/** * Throws an ApplicationException when invoked */ public void throwApplicationException() throws ApplicationException { throw new ApplicationException("Testing ability to throw Application Exceptions"); }
91929394959697
/** * Throws an ApplicationException when invoked */ @Override public void throwApplicationException() throws ApplicationException { throw new ApplicationException("Testing ability to throw Application Exceptions"); }
120121122123124125126
103104105106107108109
102103104105106107108
949596979899100
/** * Throws an ApplicationException when invoked * */ public void throwApplicationException() throws ApplicationException{ throw new ApplicationException("Testing ability to throw Application Exceptions"); }
71727374757677
118119120121122123124