From 6e9c51ecf05ac80f204afccc69a4c4f37e8f0993 Mon Sep 17 00:00:00 2001 From: Bob van de Vijver Date: Sun, 12 Jul 2020 14:52:59 +0200 Subject: [PATCH] Add documentation note on how to skip your custom handler --- doc/handlers.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/handlers.rst b/doc/handlers.rst index 441ad8f7e..affd71162 100644 --- a/doc/handlers.rst +++ b/doc/handlers.rst @@ -78,3 +78,8 @@ Also, this type of handler is registered via the builder object:: }) ; +Skippable Subscribing Handlers +------------------------------- + +In case you need to be able to fall back to the default deserialization behavior instead of using your custom +handler, you can simply throw a `SkipHandlerException` from you custom handler method to do so::