1 8 9 package com.sleepycat.je; 10 11 public class ExceptionEvent { 12 private Exception exception; 13 private String threadName; 14 15 ExceptionEvent(Exception exception, String threadName) { 16 this.exception = exception; 17 this.threadName = threadName; 18 } 19 20 public Exception getException() { 21 return exception; 22 } 23 24 public String getThreadName() { 25 return threadName; 26 } 27 } 28 29 | Popular Tags |