Exception: DerivativeRodeo::Errors::StorageLocationNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/derivative_rodeo/errors.rb

Overview

Raised when a storage adapter is called for but does not exist in the registered adapter list

Instance Method Summary collapse

Constructor Details

#initialize(location_name: '') ⇒ StorageLocationNotFoundError

Returns a new instance of StorageLocationNotFoundError.



22
23
24
# File 'lib/derivative_rodeo/errors.rb', line 22

def initialize(location_name: '')
  super("Could not find the adapter #{location_name}. Make sure it is required and registerd properly.")
end