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

io.getstream.client.exception.AuthenticationFailedException Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package io.getstream.client.exception;

/**
 * In case the authentication failed on remote side (http status code: 401/403).
 */
public class AuthenticationFailedException extends StreamClientException {

    public AuthenticationFailedException() {
        super();
    }

    public AuthenticationFailedException(String message) {
        super(message);
    }

    public AuthenticationFailedException(String message, Throwable cause) {
        super(message, cause);
    }

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

    protected AuthenticationFailedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy