mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-10-07 00:15:15 +08:00
8 lines
180 B
Java
8 lines
180 B
Java
package plus.bookshelf.Common.Error;
|
|
|
|
public interface CommonError {
|
|
public int getErrCode();
|
|
public String getErrMsg();
|
|
public CommonError setErrMsg(String errMsg);
|
|
}
|