Skip to content

Commit

Permalink
feat: 축약형 변수명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
h-beeen committed Mar 14, 2024
1 parent 4a05c13 commit 9d1f4c0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ApiExceptionHandlingFilter(
response.contentType = MediaType.APPLICATION_JSON_VALUE
response.status = HttpStatus.UNAUTHORIZED.value()
om.writeValue(response.outputStream, ErrorResponse(exception.errorCode))
} catch (ex: IOException) {
throw RuntimeException(ex)
} catch (exception: IOException) {
throw RuntimeException(exception)
}
}

0 comments on commit 9d1f4c0

Please sign in to comment.