Exception: ActiveCommand::Exceptions::UnexistentDefaultType

Inherits:
StandardError
  • Object
show all
Defined in:
lib/active_command/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(type) ⇒ UnexistentDefaultType



4
5
6
7
# File 'lib/active_command/exceptions.rb', line 4

def initialize(type)
  @type = type
  super("Unexistent default type: `#{type}`")
end