Sha256: e54ea550e91d2bb28e6c70b069c18b61d12c0ebe2c292b36199eca34edd6da88

Contents?: true

Size: 1.17 KB

Versions: 246

Compression:

Stored size: 1.17 KB

Contents

module Katello
  module HttpErrors
    BAD_REQUEST          = 400
    UNAUTHORIZED         = 401
    FORBIDDEN            = 403
    NOT_FOUND            = 404
    CONFLICT             = 409
    UNPROCESSABLE_ENTITY = 422
    INTERNAL_ERROR       = 500
    SERVICE_UNAVAILABLE  = 503

    class WrappedError < StandardError
      class_attribute :status_code
      attr_reader :original

      def initialize(msg, original = $ERROR_INFO)
        super(msg)
        @original = original
      end
    end

    class BadRequest < WrappedError
      self.status_code = BAD_REQUEST
    end

    class Unauthorized < WrappedError
      self.status_code = UNAUTHORIZED
    end

    class Forbidden < WrappedError
      self.status_code = FORBIDDEN
    end

    class NotFound < WrappedError
      self.status_code = NOT_FOUND
    end

    class Conflict < WrappedError
      self.status_code = CONFLICT
    end

    class UnprocessableEntity < WrappedError
      self.status_code = UNPROCESSABLE_ENTITY
    end

    class InternalError < WrappedError
      self.status_code = INTERNAL_ERROR
    end

    class ServiceUnavailable < WrappedError
      self.status_code = SERVICE_UNAVAILABLE
    end
  end
end

Version data entries

246 entries across 246 versions & 1 rubygems

Version Path
katello-4.15.0.rc2 app/controllers/katello/http_errors.rb
katello-4.15.0.rc1 app/controllers/katello/http_errors.rb
katello-4.14.1 app/controllers/katello/http_errors.rb
katello-4.14.0 app/controllers/katello/http_errors.rb
katello-4.14.0.rc3 app/controllers/katello/http_errors.rb
katello-4.14.0.rc2 app/controllers/katello/http_errors.rb
katello-4.14.0.rc1.1 app/controllers/katello/http_errors.rb
katello-4.14.0.rc1 app/controllers/katello/http_errors.rb
katello-4.13.1 app/controllers/katello/http_errors.rb
katello-4.13.0 app/controllers/katello/http_errors.rb
katello-4.12.1 app/controllers/katello/http_errors.rb
katello-4.13.0.rc1 app/controllers/katello/http_errors.rb
katello-4.12.0 app/controllers/katello/http_errors.rb
katello-4.12.0.rc3 app/controllers/katello/http_errors.rb
katello-4.12.0.rc2 app/controllers/katello/http_errors.rb
katello-4.12.0.rc1 app/controllers/katello/http_errors.rb
katello-4.11.1 app/controllers/katello/http_errors.rb
katello-4.11.0 app/controllers/katello/http_errors.rb
katello-4.11.0.rc2 app/controllers/katello/http_errors.rb
katello-4.11.0.rc1 app/controllers/katello/http_errors.rb