org.telegram.telegraph.exceptions.TelegraphException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegraph-meta Show documentation
Show all versions of telegraph-meta Show documentation
Easy to use library to interact with Telegra.ph
The newest version!
package org.telegram.telegraph.exceptions;
/**
* @author Ruben Bermudez
* @version 1.0
*/
public abstract class TelegraphException extends Exception {
public TelegraphException() {
super();
}
public TelegraphException(String message) {
super(message);
}
public TelegraphException(String message, Throwable cause) {
super(message, cause);
}
public TelegraphException(Throwable cause) {
super(cause);
}
protected TelegraphException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy