1 19 20 package org.netbeans.api.debugger.jpda; 21 22 23 28 public class DebuggerStartException extends Exception { 29 30 private Throwable throwable; 31 32 33 38 public DebuggerStartException (String message) { 39 super (message); 40 } 41 42 47 public DebuggerStartException (Throwable t) { 48 super (t.getMessage ()); 49 initCause(t); 50 throwable = t; 51 } 52 53 58 public Throwable getTargetException () { 59 return throwable; 60 } 61 } 62 63 | Popular Tags |