Files
new_apiServer_oms/src/main/java/com/bb/exception/RequestParameterApiException.java

9 lines
254 B
Java
Raw Normal View History

2026-03-06 02:52:51 +08:00
package com.bb.exception;
public class RequestParameterApiException extends ApiException {
public RequestParameterApiException(String parameterName) {
super("9002", "필수 요청 파라미터가 없습니다. : " + parameterName);
}
}