
no.mnemonic.services.triggers.action.exceptions.TriggerExecutionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of triggers-action Show documentation
Show all versions of triggers-action Show documentation
Definition of TriggerActions and simple implementations
The newest version!
package no.mnemonic.services.triggers.action.exceptions;
/**
* Exception thrown when an action could not be executed.
*/
public class TriggerExecutionException extends Exception {
private static final long serialVersionUID = -7505361981173157903L;
/**
* Create a TriggerExecutionException with a message.
*
* @param message Exception message
*/
public TriggerExecutionException(String message) {
super(message);
}
/**
* Create a TriggerExecutionException with a message and a cause.
*
* @param message Exception message
* @param cause Exception cause
*/
public TriggerExecutionException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy