MCPcopy Create free account
hub / github.com/ReadyTalk/avian / uncaughtException

Method uncaughtException

classpath/java/lang/ThreadGroup.java:33–45  ·  view source on GitHub ↗
(Thread t, Throwable e)

Source from the content-addressed store, hash-verified

31 }
32
33 public void uncaughtException(Thread t, Throwable e) {
34 if (parent != null) {
35 parent.uncaughtException(t, e);
36 } else {
37 Thread.UncaughtExceptionHandler deh
38 = Thread.getDefaultUncaughtExceptionHandler();
39 if (deh != null) {
40 deh.uncaughtException(t, e);
41 } else if (! (e instanceof ThreadDeath)) {
42 e.printStackTrace();
43 }
44 }
45 }
46
47 public ThreadGroup getParent() {
48 return parent;

Callers

nothing calls this directly

Calls 3

printStackTraceMethod · 0.80
uncaughtExceptionMethod · 0.65

Tested by

no test coverage detected