All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ie.omk.smpp.event.QueueFullException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy