use of it.spid.cie.oidc.exception.OIDCException in project spid-cie-oidc-java by italia.
the class TrustChainBuilder method start.
public TrustChainBuilder start() throws OIDCException {
try {
processTrustAnchorConfiguration();
processSubjectConfiguration();
discovery();
} catch (Exception e) {
logger.error(e.getMessage(), e);
this.valid = false;
if (e instanceof OIDCException) {
throw e;
} else {
throw new OIDCException(e);
}
}
return this;
}
Aggregations