(Thread t, Throwable e)
| 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; |
nothing calls this directly
no test coverage detected