io.mosip.pms.device.exception.DeviceValidationException Maven / Gradle / Ivy
The newest version!
package io.mosip.pms.device.exception;
import java.util.List;
import io.mosip.kernel.core.exception.ServiceError;
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