jdk-24/test/hotspot/jtreg/vmTestbase/nsk/share/jdi/JDITestRuntimeException.java
2019-12-09 13:02:07 -08:00

8 lines
196 B
Java

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