Top


定義場所(file name)

jdk/src/share/classes/java/lang/Thread.java

説明(description)

    /**
     * Dispatch an uncaught exception to the handler. This method is
     * intended to be called only by the JVM.
     */

名前(function name)

    private void dispatchUncaughtException(Throwable e) {

本体部(body)

  {- -------------------------------------------
  (1) java.lang.Thread.getUncaughtExceptionHandler() で UncaughtExceptionHandler を取得し, 
      その uncaughtException() メソッドを呼び出すだけ.
      ---------------------------------------- -}

            getUncaughtExceptionHandler().uncaughtException(this, e);
        }

This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.