Skip to content

Commit

Permalink
make exception type more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmelati committed Nov 15, 2024
1 parent 74fc359 commit 0647eb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class TrustChain
} else {
TrustChainResolveResponse(null, true, "A Trust chain could not be established")
}
} catch (e: Exception) {
} catch (e: Throwable) {
TrustChainConst.LOG.error("buildTrustChainRecursive failed", e)
TrustChainResolveResponse(null, true, e.message)
}
Expand Down

0 comments on commit 0647eb6

Please sign in to comment.