Skip to content

Commit 7b53e24

Browse files
committed
chore: fix compilation problem #13183
Signed-off-by: jgomer2001 <bonustrack310@gmail.com>
1 parent 9deeb80 commit 7b53e24

File tree

1 file changed

+1
-1
lines changed
  • jans-casa/plugins/cert-authn/agama/project/lib/io/jans/casa/certauthn

1 file changed

+1
-1
lines changed

jans-casa/plugins/cert-authn/agama/project/lib/io/jans/casa/certauthn/CertUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static Pair<ValidationStatus, X509Certificate> validate(String certPEM, S
5959
certChain = cf.generateCertificates(is).stream().map(X509Certificate.class::cast)
6060
.collect(Collectors.toList());
6161

62-
} catch (CertificateException e) {
62+
} catch (IOException | CertificateException e) {
6363
logger.error(e.getMessage(), e);
6464
p.setFirst(ValidationStatus.UNPARSABLE);
6565
return p;

0 commit comments

Comments
 (0)