Y20251202-1000
This replaces the following pattern:
```
try {
...
fail();
} catch (IllegalArgumentException e) {
}
```
with
```
assertThrows(IllegalArgumentException.class, () -> ...);
This replaces the following pattern:
```
try {
...
fail();
} catch (IllegalArgumentException e) {
}
```
with
```
assertThrows(IllegalArgumentException.class, () -> ...);