An exception that's raised when there's a problem with a Request.
The request that caused the exception
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