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

bot.exception.TwoCommandException Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
package bot.exception;

import bot.model.Command;

/**
 * Created by Luca Mosetti on 2017
 */
public class TwoCommandException extends Exception {
    private static final String DESCRIPTION = "Already defined command: ";

    public TwoCommandException(Command command) {
        super(DESCRIPTION + command.getCommandIdentifier());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy