FlaNium.WinAPI.exceptions.FlaNiumDriverException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of FlaNium.WinAPI Show documentation
Show all versions of FlaNium.WinAPI Show documentation
Library extending the capabilities of the FlaNium driver.
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);
}
}