ie.omk.smpp.event.QueueFullException 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.event;
public class QueueFullException extends RuntimeException {
static final long serialVersionUID = 1L;
public QueueFullException() {
super();
}
public QueueFullException(String message, Throwable cause) {
super(message, cause);
}
public QueueFullException(String message) {
super(message);
}
public QueueFullException(Throwable cause) {
super(cause);
}
}