Sha256: 6f92885b7bace9e4a827ef56df4fd97484d68de21e0233301af44f1762aa43e6

Contents?: true

Size: 402 Bytes

Versions: 1

Compression:

Stored size: 402 Bytes

Contents

module Ashikawa
  module Core
    # This Exception is thrown when a document was requested from
    # the server that does not exist.
    class CollectionNotFoundException < RuntimeError
      # String representation of the exception
      #
      # @return String
      # @api private
      def to_s
        "You requested a collection from the server that does not exist"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ashikawa-core-0.6.0 lib/ashikawa-core/exceptions/collection_not_found.rb