Exception: Bio::BaseSpace::ModelNotInitializedError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/basespace/api/basespace_error.rb

Overview

Raised when the model for holding data has not been initialized yet.

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ ModelNotInitializedError

Create a new instance of the error.

value

Value that was provided with the request.



73
74
75
# File 'lib/basespace/api/basespace_error.rb', line 73

def initialize(value)
  super("The request cannot be completed as model has not been initialized - #{value}")
end