Exception: Bio::BaseSpace::NoResponseError

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

Overview

Raised when no response has been received from the API server (in a certain amount of time).

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ NoResponseError

Create a new instance of the error.

value

Value that was provided with the request.



63
64
65
# File 'lib/basespace/api/basespace_error.rb', line 63

def initialize(value)
  super("No response was returned from the server for this request - #{value}")
end