jdk-24/test/hotspot/jtreg/vmTestbase/nsk/share/jdi/JDITestRuntimeException.java

8 lines
196 B
Java
Raw Normal View History

package nsk.share.jdi;
public class JDITestRuntimeException extends RuntimeException {
public JDITestRuntimeException(String str) {
super("JDITestRuntimeException : " + str);
}
}