1package nsk.share.jdi; 2 3public class JDITestRuntimeException extends RuntimeException { 4 public JDITestRuntimeException(String str) { 5 super("JDITestRuntimeException : " + str); 6 } 7} 8 9