Exception: Lotus::Model::Config::AdapterNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/lotus/model/config/adapter.rb

Overview

Raised when an adapter class does not exist

Since:

  • 0.2.0

Instance Method Summary collapse

Constructor Details

#initialize(adapter_name) ⇒ AdapterNotFound

Returns a new instance of AdapterNotFound.

Since:

  • 0.2.0



10
11
12
# File 'lib/lotus/model/config/adapter.rb', line 10

def initialize(adapter_name)
  super "Cannot find Lotus::Model adapter #{adapter_name}"
end