ie.omk.smpp.AlreadyBoundException 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;
/**
* AlreadyBoundException
*
* @author Oran Kelly
* @version 1.0
*/
public class AlreadyBoundException extends ie.omk.smpp.SMPPRuntimeException {
static final long serialVersionUID = 6996870876381065702L;
public AlreadyBoundException() {
}
/**
* Construct a new AlreadyBoundException with specified message.
*/
public AlreadyBoundException(String s) {
super(s);
}
}