Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. def raise_error(error_name, superclass = Exception)
  2. raise self.class.const_get error_name
  3. rescue NameError
  4. self.class.const_set error_name, Class.new(superclass)
  5. retry
  6. end
Add Comment
Please, Sign In to add comment