ie.omk.smpp.SMPPRuntimeException 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;
/**
* SMPPRuntimeException.
*
* @author Oran Kelly <[email protected]>
* @version 1.0
*/
public class SMPPRuntimeException extends java.lang.RuntimeException {
static final long serialVersionUID = 5392381000287167880L;
public SMPPRuntimeException() {
super();
}
public SMPPRuntimeException(String msg) {
super(msg);
}
public SMPPRuntimeException(Throwable cause) {
super(cause);
}
public SMPPRuntimeException(String msg, Throwable cause) {
super(msg, cause);
}
}