版本更新至:3.78

调整:数据保存提示现在默认关闭了
新增:Language2.yml 新增 [book] 类型示范
This commit is contained in:
坏黑
2018-03-11 14:40:12 +08:00
parent bfb2015b20
commit c89fcf4116
10 changed files with 352 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
package me.skymc.taboolib.exception;
public class PluginNotFoundException extends Error {
private static final long serialVersionUID = -475540326950009346L;
public PluginNotFoundException(String message) {
super(message);
}
}