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

FlaNium.WinAPI.exceptions.PropertyLoadException Maven / Gradle / Ivy

The newest version!
package FlaNium.WinAPI.exceptions;

public class PropertyLoadException extends RuntimeException{
    public PropertyLoadException(String message) {
        super(message);
    }

    public PropertyLoadException(String message, Throwable cause) {
        super(message, cause);
    }

    public PropertyLoadException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy