fr.sii.ogham.sms.sender.impl.cloudhopper.exception.SessionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ogham-sms-cloudhopper Show documentation
Show all versions of ogham-sms-cloudhopper Show documentation
SMS implementation for Ogham that uses Cloudhopper SMPP library
The newest version!
package fr.sii.ogham.sms.sender.impl.cloudhopper.exception;
import static fr.sii.ogham.core.CoreConstants.SERIAL_VERSION_UID;
/**
* This exception indicates that the failure is due to the handling of the
* session itself and not raised while sending the SMS.
*
* @author Aurélien Baudet
*
*/
public class SessionException extends SmppException {
private static final long serialVersionUID = SERIAL_VERSION_UID;
public SessionException(String message, Throwable cause) {
super(message, cause);
}
public SessionException(String message) {
super(message);
}
public SessionException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy