Skip to content

Commit

Permalink
feat : findbyId 에 대한 예외 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
DOEKYONG committed Apr 14, 2023
1 parent 676f1c7 commit e3ca408
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package kr.codesqaud.cafe.exception;

public class NotFoundException extends RuntimeException{
public NotFoundException(String msg) {
super(msg);
}
}

0 comments on commit e3ca408

Please sign in to comment.