Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. try:
  2. stuff()
  3. except Exception as e:
  4. if type(e) is ValueError: raise
  5. #do important stuff
  6. raise
  7.  
  8. #do important stuff
  9.  
  10. try:
  11. stuff()
  12. finally except ValueError:
  13. #do important stuff
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement