Exception: Lotus::Model::Mapping::RepositoryNotFound

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

Overview

Invalid repository error.

It gets raised when the application tries to access to a existing repository.

Since:

  • 0.2.0

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ RepositoryNotFound

Returns a new instance of RepositoryNotFound.

Since:

  • 0.2.0



42
43
44
# File 'lib/lotus/model/mapping.rb', line 42

def initialize(name)
  super("Cannot find class for repository: #{ name }")
end