From 6135494661d71de522617d1abc8112e7f957bcc6 Mon Sep 17 00:00:00 2001 From: Jawoo Koo Date: Mon, 24 Mar 2014 15:11:40 -0500 Subject: [PATCH] Added a copy of code from ExceptionHandler.java * Just a random code. --- Jawoo Koo.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Jawoo Koo.txt diff --git a/Jawoo Koo.txt b/Jawoo Koo.txt new file mode 100644 index 0000000..996c45e --- /dev/null +++ b/Jawoo Koo.txt @@ -0,0 +1,9 @@ +package toucan_1308_ravan; + +public class ExceptionHandler implements Thread.UncaughtExceptionHandler +{ + public void uncaughtException (Thread t, Throwable e) + { + System.out.println("> Oops at "+t.getName()); + } +}