Sha256: 8cff023663653b249871dbefd50a0afd22aa66868798c963a9bb61600ed2908e

Contents?: true

Size: 354 Bytes

Versions: 1

Compression:

Stored size: 354 Bytes

Contents

require 'snap_search/error'

module SnapSearch
    
    # Raised when the Client could not connect to the client's `api_url`.
    class ConnectionError < Error
        
        # Create a new ConnectionError.
        def initialize
            super('Could not establish a connection to SnapSearch.')
        end
        
    end
    
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
snapsearch-client-ruby-1.0.0 lib/snap_search/connection_error.rb