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

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

The newest version!
package FlaNium.WinAPI.exceptions;

public class FlaNiumDriverException extends RuntimeException{

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

    public FlaNiumDriverException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy