Exception: Stove::Error::StoveError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/stove/error.rb

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ StoveError

Returns a new instance of StoveError.



4
5
6
7
8
9
10
11
# File 'lib/stove/error.rb', line 4

def initialize(options = {})
  return super(options[:_message]) if options[:_message]

  class_name = self.class.to_s.split('::').last
  error_key  = Util.underscore(class_name)

  super I18n.t("stove.errors.#{error_key}", options)
end