lib/github_api/error/unauthorized.rb



# encoding: utf-8

module Github #:nodoc
  # Raised when Github returns the HTTP status code 401
  module Error
    class Unauthorized < ServiceError
      http_status_code 401

      def initialize(response)
        super(response)
      end

    end # Unauthorized
  end # Error
end # Github