refs #712: authenticate backoffice MCP user tokens

This commit is contained in:
devmrko
2026-07-23 14:45:18 +09:00
parent ce4b418603
commit 1917df09a2
18 changed files with 525 additions and 37 deletions

View File

@@ -0,0 +1,9 @@
package com.cloudhandson.vpdbackoffice.service;
/** Deliberately generic MCP authentication failure; never include token material. */
public class McpUnauthorizedException extends RuntimeException {
public McpUnauthorizedException() {
super("유효한 HMM 사용자 Bearer Token이 필요합니다.");
}
}