![JAR search and dependency download from the Maven repository](/logo.png)
com.ionos.go.plugin.notifier.GoNotifierPluginException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of go-gchat-notifier Show documentation
Show all versions of go-gchat-notifier Show documentation
GoCD plugin to send notifications to GChat when pipeline states change
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