initial commit

This commit is contained in:
gong01
2026-03-06 02:52:51 +08:00
commit 85278ca36f
365 changed files with 83942 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.bb.exception;
public class RequestParameterApiException extends ApiException {
public RequestParameterApiException(String parameterName) {
super("9002", "필수 요청 파라미터가 없습니다. : " + parameterName);
}
}