Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/nsk/share/jdi/JDITestRuntimeException.java
41161 views
1
package nsk.share.jdi;
2
3
public class JDITestRuntimeException extends RuntimeException {
4
public JDITestRuntimeException(String str) {
5
super("JDITestRuntimeException : " + str);
6
}
7
}
8
9