Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to access val's created in a try/catch block within the finally block ? or is the finally block out of scope.

def myTryCatch: Either[Exception, String] = {
  try {
    val w = runOrFailWithException("Please work...")
    Right(w)
  } catch {
    case ex: Exception => {
      Left(ex)
    }
  }
  finally {
    // How do I get access to Left or Right in my finally block.
    // This does not work
    _ match {
      case Right(_) =>
      case Left(_) =>
    }
  }
}
share|improve this question
1  
You don't, finally can only see stuff declared out of the try/catch scope, not inside of it. – Maurício Linhares Feb 28 '12 at 13:47

1 Answer

Why do you need to do this in the finally block? Since a try/catch is an expression, you can match on its value:

try {
  val w = runOrFailWithException("Please work...")
  Right(w)
} catch {
  case ex: Exception => Left(ex)
} match {
  case Right(_) =>
  case Left(_) =>
}
share|improve this answer
Thank you, this is working very well. Of course, I don't need finally here. - Java is still somewhere in the back of my head. – Peter Lerche Feb 28 '12 at 14:55
1  
Actually you event don't need a match ;) just do what you want with values inside try and catch clauses and then "return" them ) – tuxSlayer Feb 28 '12 at 20:44
If Java's still in the back of your head you must know that the scope rules for try..catch..finally are the same in Java. – Ricky Clarkson Mar 4 '12 at 1:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.