All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.admin.packetstatusupdater.constant.AdminManagerProxyErrorCode Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy