You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently JSON for deserializing any Throwable with null for "cause" property:
{ "message": "...",
"cause": null
}
will lead to cryptic exception, due to Throwable.initCause() being called with null.
To avoid this, ThrowableDeserializer should handle this edge case gracefully.