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

ie.omk.smpp.SMPPRuntimeException Maven / Gradle / Ivy

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy