class Ashikawa::Core::NoCollectionProvidedException

This Exception is thrown when a Query object should execute a simple query but no collection was provided upon creation

Public Instance Methods

to_s() click to toggle source

String representation of the exception

@return String @api private

# File lib/ashikawa-core/exceptions/no_collection_provided.rb, line 10
def to_s
  "A simple query can't be executed by a Query object without a collection"
end