diff options
Diffstat (limited to 'test/transform/resource/before')
-rw-r--r-- | test/transform/resource/before/StandardExceptions.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/transform/resource/before/StandardExceptions.java b/test/transform/resource/before/StandardExceptions.java index 939e1b6b..1316011d 100644 --- a/test/transform/resource/before/StandardExceptions.java +++ b/test/transform/resource/before/StandardExceptions.java @@ -1,8 +1,9 @@ +import lombok.AccessLevel; import lombok.experimental.StandardException; @StandardException class EmptyException extends Exception { } -@StandardException class NoArgsException extends Exception { +@StandardException(access = AccessLevel.PROTECTED) class NoArgsException extends Exception { public NoArgsException() { } } |