Skip to content

Instantly share code, notes, and snippets.

@gclaramunt
Created October 7, 2011 20:23
Show Gist options
  • Save gclaramunt/1271271 to your computer and use it in GitHub Desktop.
Save gclaramunt/1271271 to your computer and use it in GitHub Desktop.
Safely call Java from Scala
def unsafeCall[T](x: =>T):Option[T]= try {
Option(x)
} catch {
case _ => None
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment