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

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

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

import java.io.IOException;

public class PermissionDeniedException extends IOException {

    public PermissionDeniedException(String file) {
        super(file);
    }

    public PermissionDeniedException(String file, String reason) {
        this(file + " " + reason);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy