fr.sii.ogham.sms.sender.impl.cloudhopper.exception.ConnectionFailedException 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;
/**
* Specialized exception that indicates that the session couldn't be bound
* (connection failed).
*
* @author Aurélien Baudet
*
*/
@SuppressWarnings({ "java:S110", "squid:MaximumInheritanceDepth" })
public class ConnectionFailedException extends SessionException {
private static final long serialVersionUID = SERIAL_VERSION_UID;
public ConnectionFailedException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy