home *** CD-ROM | disk | FTP | other *** search
- class ExceptionDemo {
- static void compute(int var0) throws MyException {
- System.out.println("called compute(" + var0 + ").");
- if (var0 > 10) {
- throw new MyException(var0);
- } else {
- System.out.println("normal exit.");
- }
- }
-
- public static void main(String[] var0) {
- try {
- compute(1);
- compute(20);
- } catch (MyException var2) {
- System.out.println("caught" + var2);
- }
- }
- }
-