Lines Matching refs:SubException
95 } catch (SubException se) { in main()
104 } catch (SubException se) { in main()
126 class SubException extends BaseException {} class
127 class SubSubException extends SubException {}
140 public void bothThrowBase() throws BaseException, SubException, SubSubException; in bothThrowBase()
147 public void throwException() throws SubException; in throwException()
148 public void throwBase() throws SubException; in throwBase()
149 public void throwSub() throws SubException; in throwSub()
150 public void throwSubSub() throws SubException; in throwSubSub()
152 public void bothThrowBase() throws SubException, BaseException, SubSubException; in bothThrowBase()
159 public int dastardlyDeed() throws SubException { in dastardlyDeed()
161 throw new SubException(); in dastardlyDeed()
167 public void throwException() throws SubException {} in throwException()
168 public void throwBase() throws SubException {} in throwBase()
169 public void throwSub() throws SubException {} in throwSub()
170 public void throwSubSub() throws SubException {} in throwSubSub()
172 public void bothThrowBase() throws BaseException, SubException {} in bothThrowBase()
225 throw new SubException(); in invoke()