class Strelka::RequestError

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

new( request, message, *args ) click to toggle source

Create a new RequestError for the specified request object.

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