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