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

com.github.ltsopensource.alarm.AlarmNotifyException Maven / Gradle / Ivy

package com.github.ltsopensource.alarm;

/**
 * @author Robert HG ([email protected]) on 2/17/16.
 */
public class AlarmNotifyException extends RuntimeException {

    public AlarmNotifyException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy