Sha256: 5fcab0b1fd52df39ce251d4aa778a5d9ea0acb059b0690b6832933bc2c3002ba

Contents?: true

Size: 1.91 KB

Versions: 12

Compression:

Stored size: 1.91 KB

Contents

# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module Google
  module Apis
    # Base error, capable of wrapping another
    class Error < StandardError
      attr_reader :status_code
      attr_reader :header
      attr_reader :body
      
      def initialize(err, status_code: nil, header: nil, body: nil)
        @cause = nil

        if err.respond_to?(:backtrace)
          super(err.message)
          @cause = err
        else
          super(err.to_s)
        end
        @status_code = status_code
        @header = header.dup unless header.nil?
        @body = body
      end

      def backtrace
        if @cause
          @cause.backtrace
        else
          super
        end
      end
    end
    
    # An error which is raised when there is an unexpected response or other
    # transport error that prevents an operation from succeeding.
    class TransmissionError < Error
    end

    # An exception that is raised if a redirect is required
    #
    class RedirectError < Error
    end

    # A 4xx class HTTP error occurred.
    class ClientError < Error
    end

    # A 4xx class HTTP error occurred.
    class RateLimitError < Error
    end

    # A 401 HTTP error occurred.
    class AuthorizationError < Error
    end

    # A 5xx class HTTP error occurred.
    class ServerError < Error
    end

    # Error class for problems in batch requests.
    class BatchError < Error
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
google-api-client-0.9.8 lib/google/apis/errors.rb
google-api-client-0.9.6 lib/google/apis/errors.rb
google-api-client-0.9.5 lib/google/apis/errors.rb
google-api-client-0.9.4 lib/google/apis/errors.rb
google-api-client-0.9.3 lib/google/apis/errors.rb
google-api-client-0.9.2 lib/google/apis/errors.rb
google-api-client-0.9.1 lib/google/apis/errors.rb
google-api-client-0.9 lib/google/apis/errors.rb
google-api-client-0.9.pre5 lib/google/apis/errors.rb
google-api-client-0.9.pre4 lib/google/apis/errors.rb
google-api-client-0.9.pre3 lib/google/apis/errors.rb
google-api-client-0.9.pre2 lib/google/apis/errors.rb