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

com.julienvey.trello.NotAuthorizedException Maven / Gradle / Ivy

There is a newer version: 0.14
Show newest version
package com.julienvey.trello;

public final class NotAuthorizedException extends TrelloBadRequestException {
    public NotAuthorizedException(String message) {
        super(message);
    }

    public NotAuthorizedException() {
        this("Not authorized");
    }

    public NotAuthorizedException(String response, Throwable cause) {
        super(response, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy