Sign in
chromium
/
external
/
github.com
/
google
/
error-prone
/
refs/heads/copybara-sync
/
.
/
docs
/
bugpattern
/
ThrowsUncheckedException.md
blob: d15008a6441666381142ec9e128fa312a33904ac [
file
] [
log
] [
blame
] [
view
] [
edit
]
Effective
Java
3rd
Edition
Item
82
says
:
>
Use
the
Javadoc
`@throws`
tag to document each
unchecked
exception that a
>
method can
throw
,
but
do
not
use
the
throws
keyword to include
unchecked
>
exceptions
in
the method declaration
.