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

com.github.alex1304.ultimategdbot.api.command.annotated.paramconverter.ParamConversionException Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package com.github.alex1304.ultimategdbot.api.command.annotated.paramconverter;

import static com.github.alex1304.ultimategdbot.api.utils.Markdown.code;

import com.github.alex1304.ultimategdbot.api.command.CommandFailedException;

public class ParamConversionException extends CommandFailedException {
	private static final long serialVersionUID = -6218361940906651280L;

	public ParamConversionException(String param, String arg, String message) {
		super("Cannot convert " + code(arg) + " into " + code(param) + (message == null ? "" : ": " + message));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy