From c0edec657d26105c39cb84264203ae6932168001 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Tue, 14 Jul 2026 08:00:10 +0000 Subject: [PATCH] =?UTF-8?q?TA=20=EC=97=AD=ED=95=A0=20Spring=20=EA=B2=BD?= =?UTF-8?q?=EA=B3=84=20smoke=20(role-ta-live-v2-001)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../exception/RoleNotFoundException.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/main/java/com/runtimematrix/exception/RoleNotFoundException.java diff --git a/src/main/java/com/runtimematrix/exception/RoleNotFoundException.java b/src/main/java/com/runtimematrix/exception/RoleNotFoundException.java new file mode 100644 index 0000000..f3e2caf --- /dev/null +++ b/src/main/java/com/runtimematrix/exception/RoleNotFoundException.java @@ -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 + ); + } +}