From ae9e700769744a3dd63a0abf51326373fd6ab728 Mon Sep 17 00:00:00 2001 From: Martin Panzer Date: Wed, 26 Mar 2025 06:41:39 +0100 Subject: [PATCH] add missing @UnwrapException in quarkus-rest doc example --- docs/src/main/asciidoc/rest.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/main/asciidoc/rest.adoc b/docs/src/main/asciidoc/rest.adoc index 32db3715b1ff8..3ecf2f2bf177e 100644 --- a/docs/src/main/asciidoc/rest.adoc +++ b/docs/src/main/asciidoc/rest.adoc @@ -2363,6 +2363,7 @@ If you wish to make sure your exception mapper is called for your exception type [source,java] ---- +@UnwrapException public class MyExceptionWrapper extends RuntimeException { public MyExceptionWrapper(Exception cause) { super(cause);