추론실행 에러로그 추가

This commit is contained in:
2026-02-23 16:35:52 +09:00
parent 8d7ddc4c33
commit a2293ad1ab
2 changed files with 16 additions and 2 deletions

View File

@@ -27,4 +27,10 @@ public class CustomApiException extends RuntimeException {
this.codeName = errorCode.getCode();
this.status = errorCode.getStatus();
}
public CustomApiException(String codeName, HttpStatus status, Throwable cause) {
super(codeName, cause);
this.codeName = codeName;
this.status = status;
}
}