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

com.julienvey.trello.exception.TrelloHttpException Maven / Gradle / Ivy

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

public class TrelloHttpException extends RuntimeException {

    public TrelloHttpException() {
    }

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

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

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

    public TrelloHttpException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy