Strelka::

RequestError

class
Superclass
Strelka::Error

An exception that's raised when there's a problem with a Request.

Attributes

request[R]

The request that caused the exception

Public Class Methods

anchor
new( request, message, *args )

Create a new RequestError for the specified request object.

# File lib/strelka/exceptions.rb, line 14
def initialize( request, message, *args )
        @request = request
        super( message, *args )
end