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

io.mosip.pms.device.exception.InfoItem Maven / Gradle / Ivy

The newest version!
package io.mosip.pms.device.exception;

import java.io.Serializable;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * This class is the entity class for the BaseUncheckedException and
 * BaseCheckedException class.
 * 
 * @author sanjeev.shrivastava
 */

@AllArgsConstructor
@NoArgsConstructor
class InfoItem implements Serializable {

	private static final long serialVersionUID = -779695043380592601L;

	@Getter
	@Setter
	public String errorCode = null;

	@Getter
	@Setter
	public String errorText = null;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy