TA 역할 Spring 경계 smoke (role-ta-live-v2-001)

This commit is contained in:
forge-bot 2026-07-14 08:00:10 +00:00
parent 31b1dad126
commit c0edec657d

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
);
}
}