io.mosip.admin.packetstatusupdater.exception.AdminServiceException Maven / Gradle / Ivy
package io.mosip.admin.packetstatusupdater.exception;
import java.util.List;
import io.mosip.kernel.core.exception.BaseUncheckedException;
import io.mosip.kernel.core.exception.ServiceError;
public class AdminServiceException extends BaseUncheckedException {
/**
* Generated serialVersionUID
*/
private static final long serialVersionUID = 8764526395763989084L;
private List errors;
public AdminServiceException(List errors) {
this.errors = errors;
}
public List getErrors() {
return errors;
}
}