Lines Matching refs:BaseException
117 } catch (BaseException se) { in main()
125 class BaseException extends Exception {} class
126 class SubException extends BaseException {}
132 public void throwFunky2() throws BaseException, in throwFunky2()
135 public void throwException() throws BaseException; in throwException()
136 public void throwBase() throws BaseException; in throwBase()
137 public void throwSub() throws BaseException; in throwSub()
138 public void throwSubSub() throws BaseException; in throwSubSub()
140 public void bothThrowBase() throws BaseException, SubException, SubSubException; in bothThrowBase()
152 public void bothThrowBase() throws SubException, BaseException, SubSubException; in bothThrowBase()
172 public void bothThrowBase() throws BaseException, SubException {} in bothThrowBase()
223 throw new BaseException(); in invoke()
229 throw new BaseException(); in invoke()