Skip to content

Instantly share code, notes, and snippets.

@ryandavidhartman
Last active August 29, 2015 14:22
Show Gist options
  • Save ryandavidhartman/92c1839a6d04204e583b to your computer and use it in GitHub Desktop.
Save ryandavidhartman/92c1839a6d04204e583b to your computer and use it in GitHub Desktop.
try_example3
abstract class Try[T]
case class Success[T](elem: T) extends Try[T]
case class Failure(t: Throwable) extends Try[Nothing]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment