class Bio::BaseSpace::NoResponseError

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

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 63
def initialize(value)
  super("No response was returned from the server for this request - #{value}")
end