Guest User

Untitled

a guest
Jun 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. def try
  2. i = 0
  3. loop do
  4. begin
  5. perform_action
  6. rescue Timeout
  7. i += 1
  8. raise SighIGiveUpException, "i can't :(" if i > 5
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment