All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vproxy.pni.exception.PNIException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy