com.github.dreamhead.bot.BotException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bot-core Show documentation
Show all versions of bot-core Show documentation
Object bot is a library for setting up Java objects as test data.
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);
}
}