파트너코드 조회

This commit is contained in:
Rinjae
2025-11-26 14:28:12 +09:00
parent f0cffdf9da
commit 818155242f
9 changed files with 518 additions and 38 deletions
@@ -0,0 +1,22 @@
package com.eactive.ext.kjb.common;
public class KjbObpException extends Exception {
private int statusCode;
public KjbObpException(String message) {
super(message);
}
public KjbObpException(String message, Throwable cause) {
super(message, cause);
}
public KjbObpException(int statusCode, String message) {
super(message);
this.statusCode = statusCode;
}
public int getStatusCode() {
return statusCode;
}
}