Sha256: 8676acc60294af4b2c5a4edfd2de51fb2612a4f815818cf40dbbbff7eadec12b
Contents?: true
Size: 522 Bytes
Versions: 3
Compression:
Stored size: 522 Bytes
Contents
# -*- encoding : utf-8 -*- require 'ashikawa-core/exceptions/client_error/resource_not_found' module Ashikawa module Core # This Exception is thrown when the collection was found in the database but was not # yet associated to the Graph. class CollectionNotInGraphException < ResourceNotFound # String representation of the exception # # @return String # @api private def to_s 'The requested collection has not been added to the graph yet.' end end end end
Version data entries
3 entries across 3 versions & 1 rubygems