[java-oidc-common] branch main updated: JCOMOIDC-42 - Root cause logging in FilesystemClientInformationResolver

Henri Mikkonen henri.mikkonen at iki.fi
Fri Mar 11 08:08:10 UTC 2022


This is an automated email from the git hooks/post-receive script.

hjmikkon pushed a commit to branch main
in repository java-oidc-common.

View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=51af744f4d12d4b36cb3b8112b82e06fad60393d

The following commit(s) were added to refs/heads/main by this push:
     new 51af744  JCOMOIDC-42 - Root cause logging in FilesystemClientInformationResolver
51af744 is described below

commit 51af744f4d12d4b36cb3b8112b82e06fad60393d
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Fri Mar 11 10:06:51 2022 +0200

    JCOMOIDC-42 - Root cause logging in FilesystemClientInformationResolver
    
    https://shibboleth.atlassian.net/browse/JCOMOIDC-42
    
    Include stack trace when throwing a new ParseException.
---
 .../oidc/metadata/impl/FilesystemClientInformationResolver.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/FilesystemClientInformationResolver.java b/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/FilesystemClientInformationResolver.java
index 5d69a65..c03b4ca 100644
--- a/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/FilesystemClientInformationResolver.java
+++ b/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/FilesystemClientInformationResolver.java
@@ -149,7 +149,7 @@ public class FilesystemClientInformationResolver extends AbstractFileOIDCEntityR
             }
             return result;
         } catch (final ParseException e) {
-            throw new ParseException("Could not parse a single or an array of OIDC client information object(s).");
+            throw new ParseException("Could not parse a single or an array of OIDC client information object(s).", e);
         }
     }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list