home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Documents / JAVA Programming / examples / 10 / ThrowsDemo.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-09-08  |  826 b   |  15 lines

  1. class ThrowsDemo {
  2.    static void procedure() throws IllegalAccessException {
  3.       System.out.println(" inside procedure");
  4.       throw new IllegalAccessException("demo");
  5.    }
  6.  
  7.    public static void main(String[] var0) {
  8.       try {
  9.          procedure();
  10.       } catch (IllegalAccessException var2) {
  11.          System.out.println("caught " + var2);
  12.       }
  13.    }
  14. }
  15.