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

org.jsmpp.extra.ResponseTimeoutException Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package org.jsmpp.extra;

/**
 * Throw if the the response never come for specified timeout.
 * 
 * @author uudashr
 * @version 1.0
 * @since 1.0
 * 
 */
public class ResponseTimeoutException extends Exception {
    private static final long serialVersionUID = 2091678783085990727L;

    /**
     * Default constructor.
     */
    public ResponseTimeoutException() {
        super();
    }

    /**
     * Construct with specified message and cause.
     * 
     * @param message is the message.
     * @param cause is the cause.
     */
    public ResponseTimeoutException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * Construct with specified message.
     * 
     * @param message is the detail message.
     */
    public ResponseTimeoutException(String message) {
        super(message);
    }

    /**
     * Construct with specified cause.
     * 
     * @param cause is the cause.
     */
    public ResponseTimeoutException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy