Skip to content

Commit

Permalink
#30 [Update] 에러 코드 반환 수정 중
Browse files Browse the repository at this point in the history
  • Loading branch information
Anna-Jin committed Jul 15, 2022
1 parent 83a3373 commit 1a00f65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void commence(
HttpServletResponse response,
AuthenticationException authException
) throws IOException {
Integer exception = (Integer)request.getAttribute("exception");
String exception = (String)request.getAttribute("javax.servlet.error.exception");

if(exception == null) {
setResponse(response, ErrorCode.FAILED_MESSAGE);
Expand Down

0 comments on commit 1a00f65

Please sign in to comment.