Sha256: d477c19c75eab66323c354dfe594dc754c0b44adce946bde2a4ee426576100dc
Contents?: true
Size: 488 Bytes
Versions: 3
Compression:
Stored size: 488 Bytes
Contents
# -*- encoding : utf-8 -*- require 'ashikawa-core/exceptions/client_error/resource_not_found' module Ashikawa module Core # This Exception is thrown when a graph was requested from # the server that does not exist. class GraphNotFoundException < ResourceNotFound # String representation of the exception # # @return String # @api private def to_s 'You requested a graph from the server that does not exist' end end end end
Version data entries
3 entries across 3 versions & 1 rubygems