摘要:
public class ApiException : Exception { public int ErrorCode { get; } public string ErrorMessage { get; } public ApiException(int errorCode, string er 阅读全文
posted @ 2023-12-07 15:00
ProZkb
阅读(16)
评论(0)
推荐(0)
摘要:
public enum ApiResponseStatus { Success, Error } public enum ApiErrorCode { InvalidRequest = 1000, Forbidden = 2000, NotFound = 3000, InternalServerEr 阅读全文
posted @ 2023-12-07 14:00
ProZkb
阅读(31)
评论(0)
推荐(0)