notify.UnableToNotifyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-to-OS-notify Show documentation
Show all versions of java-to-OS-notify Show documentation
Java to Operating System Notification
The newest version!
package notify;
/**
* Exception
*
* @author francois wauquier
*
*/
public class UnableToNotifyException extends RuntimeException {
public UnableToNotifyException() {
super();
}
public UnableToNotifyException(String message, Throwable cause) {
super(message, cause);
}
public UnableToNotifyException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy