io.mosip.pmp.authdevice.exception.ValidationException 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 ValidationException extends BaseUncheckedException {
private static final long serialVersionUID = 8764526395763989084L;
private List errors;
public ValidationException(List errors) {
this.errors = errors;
}
public List getErrors() {
return errors;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy