Skip to content

Commit

Permalink
feat: github 사용자정보를 가져올 수 없을 경우 사용할 GithubInfoNotFoundException 작성 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
mybloom committed Jun 9, 2022
1 parent 34cf63d commit 6035e39
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package org.team4.airbnb.exception;

public class GithubInfoNotFoundException extends NotFoundException{

@Override
protected String getBodyMessage() {
return "github 회원정보를 가져올 수 없습니다.";
}
}

0 comments on commit 6035e39

Please sign in to comment.