FileDocCategorySizeDatePackage
CatchThrow.javaAPI DocExample475Tue Dec 12 18:58:26 GMT 2000None

CatchThrow

public class CatchThrow extends Object

Fields Summary
Constructors Summary
Methods Summary
private voidcallback()

    throw new NullPointerException("thrown in CatchThrow.callback");
  
private native voidcatchThrow()

public static voidmain(java.lang.String[] args)

    CatchThrow c = new CatchThrow();
    try {
      c.catchThrow();
    } catch (Exception e) {
      System.out.println("In Java:\n  " + e);
    }