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

eu.aschuetz.nativeutils.api.exceptions.ShellExecuteException Maven / Gradle / Ivy

There is a newer version: 4.7
Show newest version
package eu.aschuetz.nativeutils.api.exceptions;

public class ShellExecuteException extends UnknownNativeErrorException {

    private final long hinstance;

    public ShellExecuteException(long code, long hinstance) {
        super(code);
        this.hinstance = hinstance;
    }

    public long getHinstance() {
        return hinstance;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy