Repository URL to install this package:
Version:
0.1.6 ▾
|
module OData
# Raised when a user attempts to do something that is not supported
class NotSupportedError < StandardError; end
# Raised when the service returns an error
class ServiceError < StandardError
attr_reader :http_code
def initialize(code)
@http_code = code
end
end
end