io.vproxy.pni.exception.PNIException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pni-api-jdk22 Show documentation
Show all versions of pni-api-jdk22 Show documentation
panama native interface pni-api-jdk22
The newest version!
package io.vproxy.pni.exception;
public class PNIException extends RuntimeException {
public PNIException(String msg) {
super(msg);
}
public PNIException(Throwable t) {
super(t);
}
public PNIException(String msg, Throwable t) {
super(msg, t);
}
}