added possibility to the ID of a user instead of a mention for a member parameter

This commit is contained in:
Sheldan
2020-05-27 15:39:12 +02:00
parent feb92698ef
commit 8413bc8314
4 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
package dev.sheldan.abstracto.core.exception;
import dev.sheldan.abstracto.templating.Templatable;
public class MemberNotFoundException extends AbstractoRunTimeException implements Templatable {
public MemberNotFoundException() {
super("");
}
@Override
public String getTemplateName() {
return "member_not_found_exception";
}
@Override
public Object getTemplateModel() {
return new Object();
}
}