[AB-271] limiting certain arguments for commands to require the same server

This commit is contained in:
Sheldan
2021-06-27 17:07:01 +02:00
parent e655adf95e
commit 5a35137132
31 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package dev.sheldan.abstracto.core.exception;
public class EntityGuildMismatchException extends AbstractoTemplatableException {
@Override
public String getTemplateName() {
return "entity_guild_mismatch_exception";
}
@Override
public Object getTemplateModel() {
return new Object();
}
}