Skip to content

Commit

Permalink
fix: 누락된 케이스 description 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Jihyun247 committed Jul 24, 2024
1 parent a12a5e9 commit 6a8420e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Projects/Core/APIClient/Interface/NetworkError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ public enum NetworkError: Error {
return "Unknown Error"
case .noResponseError:

Check failure on line 35 in Projects/Core/APIClient/Interface/NetworkError.swift

View workflow job for this annotation

GitHub Actions / Run Swiftlint

Duplicate sets of conditions in the same branch instruction should be avoided (duplicate_conditions)
return "No Response Error"
case .authorizationError:

Check failure on line 37 in Projects/Core/APIClient/Interface/NetworkError.swift

View workflow job for this annotation

GitHub Actions / Run Swiftlint

Duplicate sets of conditions in the same branch instruction should be avoided (duplicate_conditions)
return "Autorization Error"
case .noResponseError:

Check failure on line 39 in Projects/Core/APIClient/Interface/NetworkError.swift

View workflow job for this annotation

GitHub Actions / Run Swiftlint

Duplicate sets of conditions in the same branch instruction should be avoided (duplicate_conditions)
return "No Response Error"
case .authorizationError:

Check failure on line 41 in Projects/Core/APIClient/Interface/NetworkError.swift

View workflow job for this annotation

GitHub Actions / Run Swiftlint

Duplicate sets of conditions in the same branch instruction should be avoided (duplicate_conditions)
return "Authorization Error"
}
Expand Down

0 comments on commit 6a8420e

Please sign in to comment.