Skip to content

Instantly share code, notes, and snippets.

@psylone
Created September 27, 2016 12:28
Show Gist options
  • Save psylone/b10a1f0777e8972a6cfc3b5311e66c07 to your computer and use it in GitHub Desktop.
Save psylone/b10a1f0777e8972a6cfc3b5311e66c07 to your computer and use it in GitHub Desktop.
Nice way to create custom exception classes in Ruby
class SpaceCraft
%i[
LowFuelError
LowEnergyError
].each { |exception| self.const_set(exception, Class.new(StandardError)) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment