Sha256: 24c454e8fe19fedbed7d006d539a05b0f3efd73f50d78cc2c14b16217cbd17bc

Contents?: true

Size: 355 Bytes

Versions: 1

Compression:

Stored size: 355 Bytes

Contents

require 'snap_search/exception'

module SnapSearch
    
    # Raised when the Client could not connect to the client's `api_url`.
    class ConnectionException < Exception
        
        # Create a new ConnectionException.
        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-0.1.0 lib/snap_search/connection_exception.rb