com.orange.cepheus.cep.exception.SenderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cepheus-cep Show documentation
Show all versions of cepheus-cep Show documentation
Cepheus-CEP is a CEP (Complex Event Processor), it uses the Esper engine.
The newest version!
package com.orange.cepheus.cep.exception;
/**
* Handle errors on sender
*/
public class SenderException extends Exception {
public SenderException(String message) {
super(message);
}
public SenderException(String message, Throwable cause) {
super(message, cause);
}
}