1 2 3 4 5 6 7
package eu.olli.cowmoonication.command.exception; public class ApiContactException extends MooCommandException { public ApiContactException(String api, String failedAction) { super("Sorry, couldn't contact the " + api + " API and thus " + failedAction); } }