TA 역할 Spring 경계 smoke #5

Open
forge-bot wants to merge 8 commits from forge/role-ta-live-v2-001-attempt-1-run-d1ca4511d09d into main
Showing only changes of commit c0edec657d - Show all commits

View file

@ -0,0 +1,12 @@
package com.runtimematrix.exception;
public class RoleNotFoundException extends BusinessException {
public RoleNotFoundException(Long roleId, String path) {
super(
"ERR_ROLE_NOT_FOUND",
"역할 ID " + roleId + "을 찾을 수 없습니다",
path
);
}
}