class AbstractMapper::Errors::UnknownCommand

An exception to be raised when unknown DSL methods is used

@api public

Public Class Methods

new(name) click to toggle source

@private

Calls superclass method
# File lib/abstract_mapper/errors/unknown_command.rb, line 16
def initialize(name)
  super "'#{name}' is not a registered DSL command"
  IceNine.deep_freeze(self)
end