Sign in
android
/
platform
/
tools
/
idea
/
c6218e46d5d2017e987ecdbd99b318a95c42abc0
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ConvertCatchToThrowsIntention
/
after.java.template
blob: 261691b613180974e9962dd80b53f080b3dbd4ad [
file
] [
log
] [
blame
]
import
java
.
io
.*;
public
class
X
{
void
f
()
throws
IOException
{
new
FileInputStream
(
"file.txt"
);
}
}