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

com.ionos.go.plugin.notifier.GoNotifierPluginException Maven / Gradle / Ivy

There is a newer version: 0.5.9
Show newest version
package com.ionos.go.plugin.notifier;

/**
 * Application wide runtime exception.
 */
public class GoNotifierPluginException extends RuntimeException {
    public GoNotifierPluginException(String message) {
        super(message);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy