liusuyi
2026-05-30 f4f4fc53260eb67483dce406a963628273786a61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ard.work.utils.http;
 
/**
 * @author sean.zhou
 * @version 0.1
 * @date 2021/11/25
 */
public interface IErrorInfo {
 
    /**
     * Get error message.
     * @return error message
     */
    String getMessage();
 
    /**
     * Get error code.
     * @return error code
     */
    Integer getCode();
 
}