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

it.auties.whatsapp.exception.RequestException Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package it.auties.whatsapp.exception;

/**
 * This exception is thrown when a request cannot be sent to Whatsapp's socket
 */
public class RequestException extends RuntimeException {
    public RequestException(String message, Throwable cause) {
        super(message, cause);
    }

    public RequestException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy