Consolidate data access control backoffice updates

This commit is contained in:
devmrko
2026-07-13 23:06:23 +09:00
parent 403298d474
commit e18b30feab
181 changed files with 11571 additions and 954 deletions

View File

@@ -0,0 +1,9 @@
package com.cloudhandson.vpdbackoffice.service;
/** Raised when ORDS rejects a missing, invalid, expired, or unauthorized user bearer token. */
public class VpdTokenAccessDeniedException extends AppException {
public VpdTokenAccessDeniedException() {
super("사용자 Bearer Token이 없거나 유효하지 않아 이 요청을 수행할 권한이 없습니다.");
}
}