ie.omk.smpp.message.SMPPProtocolException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smppapi Show documentation
Show all versions of smppapi Show documentation
Java Implementation of the Short Message Peer to Peer API.
The newest version!
package ie.omk.smpp.message;
public class SMPPProtocolException extends ie.omk.smpp.SMPPRuntimeException {
static final long serialVersionUID = -7206604214368878502L;
public SMPPProtocolException(String msg) {
super(msg);
}
public SMPPProtocolException(String msg, Throwable rootCause) {
super(msg, rootCause);
}
}