File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 27
27
import java .lang .annotation .Target ;
28
28
29
29
/**
30
- * @SneakyThrow will avoid javac's insistence that you either catch or throw onward any checked exceptions that
30
+ * @SneakyThrows will avoid javac's insistence that you either catch or throw onward any checked exceptions that
31
31
* statements in your method body declare they generate.
32
32
* <p>
33
- * @SneakyThrow does not silently swallow, wrap into RuntimeException, or otherwise modify any exceptions of the listed
33
+ * @SneakyThrows does not silently swallow, wrap into RuntimeException, or otherwise modify any exceptions of the listed
34
34
* checked exception types. The JVM does not check for the consistency of the checked exception system; javac does,
35
35
* and this annotation lets you opt out of its mechanism.
36
36
* <p>
You can’t perform that action at this time.
0 commit comments