Sha256: a50c3684808489559d55ac3251076bc26371aa3a182a49b779ca12c0c38db5fb

Contents?: true

Size: 463 Bytes

Versions: 4

Compression:

Stored size: 463 Bytes

Contents

require "ashikawa-core/exceptions/client_error/resource_not_found"

module Ashikawa
  module Core
    # This Exception is thrown when an index was requested from
    # the server that does not exist.
    class IndexNotFoundException < ResourceNotFound
      # String representation of the exception
      #
      # @return String
      # @api private
      def to_s
        "You requested an index from the server that does not exist"
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ashikawa-core-0.8.0 lib/ashikawa-core/exceptions/client_error/resource_not_found/index_not_found.rb
ashikawa-core-0.7.2 lib/ashikawa-core/exceptions/client_error/resource_not_found/index_not_found.rb
ashikawa-core-0.7.1 lib/ashikawa-core/exceptions/client_error/resource_not_found/index_not_found.rb
ashikawa-core-0.7.0 lib/ashikawa-core/exceptions/client_error/resource_not_found/index_not_found.rb