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

com.orange.cepheus.cep.exception.SenderException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy