This is basically to wrap java factory methods which throw exceptions if the item can\'t be created based on the inputs. I\'m looking for something in the base library like:
Scalaz provides Validation[+E, +A] which is similar to Either.
Either
val result: Validation[Throwable, Something] = ... result match { case Success(x) => ... case Failure(x) => ... }