Skip to content

Instantly share code, notes, and snippets.

@nudded
Created May 23, 2010 15:43
Show Gist options
  • Save nudded/411030 to your computer and use it in GitHub Desktop.
Save nudded/411030 to your computer and use it in GitHub Desktop.
def raise_error(error_name, superclass = Exception)
raise self.class.const_get error_name
rescue NameError
self.class.const_set error_name, Class.new(superclass)
retry
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment