Netflix / dgs-framework

GraphQL for Java with Spring Boot made easy.
https://netflix.github.io/dgs
Apache License 2.0
3.03k stars 286 forks source link

Don't allow unchecked exception to propagate #1785

Closed kilink closed 5 months ago

kilink commented 5 months ago

If Jackson serialization fails, a checked exception is thrown in WebsocketGraphQLWSProtocolHandler, but the library code written in Java is written to only catch runtime exceptions; switch to throwing a runtime exception so that the appropriate error handler is called.

Fixes #1629