新增:erp、erp-spi

This commit is contained in:
小久哥
2022-05-26 14:40:32 +08:00
parent 7b742c1701
commit 94eb1b7141
419 changed files with 72184 additions and 1 deletions
@@ -0,0 +1,30 @@
package com.zsw.exception;
/**
* 异常接口类
*
* @author 云久
* @version 1.0,
*/
public interface BaseException {
/**
* 统一参数验证异常码
*/
int BASE_VALID_PARAM = -9;
/**
* 返回异常信息
*
* @return
*/
String getMessage();
/**
* 返回异常编码
*
* @return
*/
int getCode();
}