disco-java-agent/disco-java-agent-core/src/integ/java/software/amazon/disco/agent/integtest/concurrent/ThreadSubclassCreationTests.java [53:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ThreadSubclass t = new ThreadSubclass();
        class UncaughtHolder {
            Throwable uncaught;
        }
        UncaughtHolder holder = new UncaughtHolder();
        Thread.UncaughtExceptionHandler h = (thread, exception)-> {holder.uncaught = exception;};
        t.setUncaughtExceptionHandler(h);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



disco-java-agent/disco-java-agent-core/src/integ/java/software/amazon/disco/agent/integtest/concurrent/ThreadSubclassCreationTests.java [71:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ThreadSubclass t = new ThreadSubclass();
        class UncaughtHolder {
            Throwable uncaught;
        }
        UncaughtHolder holder = new UncaughtHolder();
        Thread.UncaughtExceptionHandler h = (thread, exception)-> {holder.uncaught = exception;};
        t.setUncaughtExceptionHandler(h);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



