Skip to content

Instantly share code, notes, and snippets.

@nwillc
Created October 25, 2018 00:28
Show Gist options
  • Save nwillc/44eb7fd1844c9513d29c9a53abad913f to your computer and use it in GitHub Desktop.
Save nwillc/44eb7fd1844c9513d29c9a53abad913f to your computer and use it in GitHub Desktop.
Use with exception
try {
FileReader("input.txt").use {
// Use the input
}
} catch (e: FileNotFoundException) {
// Handle possible exception
} catch (e2: IOException) {
// Handle another exception
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment