cn.khthink.easyapi.config.BaseEasyConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EasyApi Show documentation
Show all versions of EasyApi Show documentation
A RESTFUL Framework for JavaWeb
The newest version!
package cn.khthink.easyapi.config;
/*
Create by KH at 2017/10/18 14:19
CopyRight © 2016-2018 鲨软科技, All Rights Reserved.
*/
/**
* 配置抽象类
*
* @author kh
*/
public abstract class BaseEasyConfig extends Config {
/**
* 自定义初始化
*
* @throws Exception 初始化错误
*/
protected abstract void init() throws Exception;
}