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

vip.efactory.common.i18n.enums.IBaseErrorEnum Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package vip.efactory.common.i18n.enums;

/**
 * 定义基本的错误枚举应有的方法
 */
public interface IBaseErrorEnum {
    /**
     * 错误描述
     */
    String getReason();

    /**
     * 获取错误码
     */
    int getErrorCode();

    String name();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy