class Bio::BaseSpace::ModelNotInitializedError

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

Public Class Methods

new(value) click to toggle source

Create a new instance of the error.

value

Value that was provided with the request.

Calls superclass method
# 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