Last active
August 29, 2015 14:22
-
-
Save ryandavidhartman/92c1839a6d04204e583b to your computer and use it in GitHub Desktop.
try_example3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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