Skip to content

Commit

Permalink
[CHORE] #245 - error handling 메서드 범위 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cchanmi committed Dec 24, 2024
1 parent ba19782 commit 67784a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Smeem-iOS/Smeem-iOS/Network/Base/NetworkManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation
final class NetworkManager {
static func statusCodeErrorHandling(statusCode: Int) throws {
switch statusCode {
case 400, 402...500:
case 400, 402..<500:
throw SmeemError.clientError
case 401:
throw SmeemError.tokenError
Expand Down

0 comments on commit 67784a3

Please sign in to comment.