![JAR search and dependency download from the Maven repository](/logo.png)
com.julienvey.trello.exception.TrelloHttpException Maven / Gradle / Ivy
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