Class: Lotus::Model::Adapters::NullAdapter Private

Inherits:
Object
  • Object
show all
Defined in:
lib/lotus/model/adapters/null_adapter.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Since:

  • 0.2.0

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(m, *args) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Raises:

Since:

  • 0.2.0



14
15
16
# File 'lib/lotus/model/adapters/null_adapter.rb', line 14

def method_missing(m, *args)
  raise NoAdapterError.new(m)
end