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

ie.omk.smpp.version.VersionException Maven / Gradle / Ivy

package ie.omk.smpp.version;

/**
 * Exception thrown when there is a problem with SMPP versions.
 * 
 * @since 1.0
 * @author Oran Kelly
 */
public class VersionException extends ie.omk.smpp.SMPPRuntimeException {
    static final long serialVersionUID = -6347880117047656707L;

    public VersionException() {
    }

    public VersionException(String msg) {
        super(msg);
    }

    public VersionException(String msg, Throwable cause) {
        super(msg, cause);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy