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

io.mosip.pmp.authdevice.exception.DeviceValidationException Maven / Gradle / Ivy

package io.mosip.pmp.authdevice.exception;

import java.util.List;

import io.mosip.kernel.core.exception.ServiceError;
import io.mosip.pmp.partner.exception.BaseUncheckedException;

public class DeviceValidationException extends BaseUncheckedException {
	private static final long serialVersionUID = 8764526395763989084L;

	private List errors;

	public DeviceValidationException(List errors) {
		this.errors = errors;
	}

	public List getErrors() {
		return errors;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy