Suppress warnings in Gradle build

This commit is contained in:
Sam Brannen 2022-03-02 17:28:45 +01:00
parent 25aa295c2c
commit 340f41af6d
1 changed files with 2 additions and 0 deletions

View File

@ -106,11 +106,13 @@ class RollbackRuleAttributeTests {
} }
} }
@SuppressWarnings("serial")
static class MyException extends RuntimeException { static class MyException extends RuntimeException {
} }
// Name intentionally starts with MyException (including package) but does // Name intentionally starts with MyException (including package) but does
// NOT extend MyException. // NOT extend MyException.
@SuppressWarnings("serial")
static class MyException2 extends RuntimeException { static class MyException2 extends RuntimeException {
} }