All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.easyopen.message.Error Maven / Gradle / Ivy

package com.gitee.easyopen.message;

/**
 * 定义错误返回
 * @author tanghc
 *
 * @param  状态码类型,一般为Integer或String
 */
public interface Error {
	/**
	 * 获取错误信息
	 * @return 返回错误信息
	 */
	String getMsg();
	
	/**
	 * 获取状态码
	 * @return 返回状态码
	 */
	T getCode();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy