Add UserNotFound Exception 추가

This commit is contained in:
Daeil Choi
2023-02-03 16:30:16 +09:00
parent b531d2ac0e
commit d4f032ad32

View File

@@ -0,0 +1,12 @@
package com.example.springsecuritystudy.common;
public class UserNotFoundException extends RuntimeException {
public UserNotFoundException(String message) {
super(message);
}
public UserNotFoundException() {
super("유저를 찾을 수 없습니다.");
}
}