mirror of
https://github.com/rest-client/rest-client.git
synced 2022-11-09 13:49:40 -05:00
82 lines
2.1 KiB
Ruby
82 lines
2.1 KiB
Ruby
module RestClient
|
|
# This is the base RestClient exception class. Rescue it if you want to
|
|
# catch any exception that your request might raise
|
|
class Exception < RuntimeError
|
|
def message(default=nil)
|
|
self.class::ErrorMessage
|
|
end
|
|
end
|
|
|
|
# Base RestClient exception when there's a response available
|
|
class ExceptionWithResponse < Exception
|
|
attr_accessor :response
|
|
|
|
def initialize(response=nil)
|
|
@response = response
|
|
end
|
|
|
|
def http_code
|
|
@response.code.to_i if @response
|
|
end
|
|
end
|
|
|
|
# A redirect was encountered; caught by execute to retry with the new url.
|
|
class Redirect < Exception
|
|
ErrorMessage = "Redirect"
|
|
|
|
attr_accessor :url
|
|
def initialize(url)
|
|
@url = url
|
|
end
|
|
end
|
|
|
|
class NotModified < Exception
|
|
ErrorMessage = 'NotModified'
|
|
end
|
|
|
|
# Authorization is required to access the resource specified.
|
|
class Unauthorized < ExceptionWithResponse
|
|
ErrorMessage = 'Unauthorized'
|
|
end
|
|
|
|
# No resource was found at the given URL.
|
|
class ResourceNotFound < ExceptionWithResponse
|
|
ErrorMessage = 'Resource not found'
|
|
end
|
|
|
|
# The server broke the connection prior to the request completing.
|
|
class ServerBrokeConnection < Exception
|
|
ErrorMessage = 'Server broke connection'
|
|
end
|
|
|
|
# The server took too long to respond.
|
|
class RequestTimeout < Exception
|
|
ErrorMessage = 'Request timed out'
|
|
end
|
|
|
|
# The request failed, meaning the remote HTTP server returned a code other
|
|
# than success, unauthorized, or redirect.
|
|
#
|
|
# The exception message attempts to extract the error from the XML, using
|
|
# format returned by Rails: <errors><error>some message</error></errors>
|
|
#
|
|
# You can get the status code by e.http_code, or see anything about the
|
|
# response via e.response. For example, the entire result body (which is
|
|
# probably an HTML error page) is e.response.body.
|
|
class RequestFailed < ExceptionWithResponse
|
|
def message
|
|
"HTTP status code #{http_code}"
|
|
end
|
|
|
|
def to_s
|
|
message
|
|
end
|
|
end
|
|
end
|
|
|
|
# backwards compatibility
|
|
class RestClient::Request
|
|
Redirect = RestClient::Redirect
|
|
Unauthorized = RestClient::Unauthorized
|
|
RequestFailed = RestClient::RequestFailed
|
|
end
|