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

io.mosip.pms.device.constant.AuditErrorCode Maven / Gradle / Ivy

There is a newer version: 1.3.0-dp.1
Show newest version
package io.mosip.pms.device.constant;

public enum AuditErrorCode {
	
	AUDIT_PARSE_EXCEPTION("PMP-AUT-020", "Parse Error exception"), 
	AUDIT_EXCEPTION("PMP-AUT-021", "Audit Exception from client::");	

	private final String errorCode;
	private final String errorMessage;

	private AuditErrorCode(final String errorCode, final String errorMessage) {
		this.errorCode = errorCode;
		this.errorMessage = errorMessage;
	}

	public String getErrorCode() {
		return errorCode;
	}

	public String getErrorMessage() {
		return errorMessage;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy