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

org.cryptomator.windows.common.WindowsException Maven / Gradle / Ivy

The newest version!
package org.cryptomator.windows.common;

public class WindowsException extends Exception {

	private final int systemErrorCode;

	public WindowsException(String method, int systemErrorCode) {
		super("Method %s returned system error code %d".formatted(method, systemErrorCode));
		this.systemErrorCode = systemErrorCode;
	}

	public int getSystemErrorCode() {
		return systemErrorCode;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy