diff --git a/Program/Common/Model/Status.cs b/Program/Common/Model/Status.cs index 2da02a2..75ab156 100644 --- a/Program/Common/Model/Status.cs +++ b/Program/Common/Model/Status.cs @@ -47,15 +47,19 @@ public static class APIResponse return Send("100", msg ?? "입력 값이 유효하지 않습니다.", ""); } + public static APIResponseStatus AccessExpireError(string? msg = null) + { + return Send("101", msg ?? "엑세스 토큰이 유효하지 않습니다.", ""); + } + + + // -- -- -- OUTPUT ERROR -- -- -- // public static APIResponseStatus NotFoundError(string? msg = null) { return Send("200", msg ?? "알맞은 값을 찾을 수 없습니다.", ""); } - public static APIResponseStatus AccessExpireError(string? msg = null) - { - return Send("201", msg ?? "엑세스 토큰이 만료되었습니다.", ""); - } + public static APIResponseStatus InternalSeverError(string? msg = null) {