I am using - Maven/Gradle plugin v6.11.0 - rewrite-testing-frameworks v3.10.0 ## How are you running OpenRewrite? Classic maven call ## What is the smallest, simplest way to reproduce the problem? I have the following test: ```java @Test(expected = SomeException.class) public void testSomething() throws Exception { } ``` It gets transformed to ```java @Test void execute_db_down() {} ``` The `throws` is removed which causes a compilation error.