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

com.github.dreamhead.bot.BotException Maven / Gradle / Ivy

The newest version!
package com.github.dreamhead.bot;

public class BotException extends RuntimeException {
    public BotException() {
        super();
    }

    public BotException(final String message) {
        super(message);
    }

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

    public BotException(final Throwable cause) {
        super(cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy