io.mosip.kernel.openid.bridge.api.authmanager.exception.AuthZException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kernel-openid-bridge-api Show documentation
Show all versions of kernel-openid-bridge-api Show documentation
Mosip Open-ID-Connect bridge API
package io.mosip.kernel.openid.bridge.api.authmanager.exception;
import java.util.List;
import io.mosip.kernel.core.exception.BaseUncheckedException;
import io.mosip.kernel.core.exception.ServiceError;
/**
*
* @author Srinivasan
*
*/
public class AuthZException extends BaseUncheckedException {
/**
* Serializable version ID.
*/
private static final long serialVersionUID = 8152409863253682472L;
/**
* This variable holds the MosipErrors list.
*/
private final List list;
/**
* @param list The error list.
*/
public AuthZException(List list) {
this.list = list;
}
/**
* Getter for error list.
*
* @return The error list.
*/
public List getList() {
return list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy