io.mosip.admin.packetstatusupdater.constant.AdminManagerProxyErrorCode Maven / Gradle / Ivy
package io.mosip.admin.packetstatusupdater.constant;
public enum AdminManagerProxyErrorCode {
ADMIN_FETCH_EXCEPTION("ADM-PKT-000","Admin URL execution exception"),
ADMIN_UNKNOWNHOST_EXCEPTION("ADM-PKT-000","Admin unKnown Host exception");
private final String errorCode;
private final String errorMessage;
private AdminManagerProxyErrorCode(final String errorCode, final String errorMessage) {
this.errorCode = errorCode;
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return errorCode;
}
public String getErrorMessage() {
return errorMessage;
}
}