com.gitee.easyopen.message.Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyopen-mini Show documentation
Show all versions of easyopen-mini Show documentation
easyopen mini版,保留基本签名校验,文档功能。https://gitee.com/durcframework/easyopen
package com.gitee.easyopen.message;
/**
* 定义错误返回
* @author tanghc
*
* @param 状态码类型,一般为Integer或String
*/
public interface Error {
/**
* 获取错误信息
* @return 返回错误信息
*/
String getMsg();
/**
* 获取状态码
* @return 返回状态码
*/
T getCode();
}