Guest User

Untitled

a guest
Jan 5th, 2014
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.10 KB | None | 0 0
  1. tries = 0
  2. begin
  3.     exit
  4. rescue Exception => e
  5.     tries += 1
  6.     print e.to_s
  7.     retry if tries < 3
  8. end
Advertisement
Add Comment
Please, Sign In to add comment