With IntelliJ's s Structural Search and Replace I want to replace the following snippet:
@Test
public void myTest() throws ExecutionException, InterruptedException {}
with:
@Test
public void myTest() throws Exception {}
The goal is to simplify tests a bit. How do I configure the text constraints to do the replacement?