### Describe the bug The method body currently looks like: ```java @Override public void interceptBeforeEachMethod(Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext) throws Throwable { runExtensionMethod(invocationContext, extensionContext, true); invocation.skip(); } ``` Unlike other interception methods that reflect the `assertException`, e.g.: ```java @Override public void interceptAfterEachMethod(Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext) throws Throwable { if (assertException == null) { runExtensionMethod(invocationContext, extensionContext, true); invocation.skip(); } else { invocation.proceed(); } } ``` I have no idea if it's intentional or just an oversight. ### Expected behavior _No response_ ### Actual behavior _No response_ ### How to Reproduce? _No response_ ### Output of `uname -a` or `ver` _No response_ ### Output of `java -version` _No response_ ### Quarkus version or git rev _No response_ ### Build tool (ie. output of `mvnw --version` or `gradlew --version`) _No response_ ### Additional information _No response_