class GremlinClient::ConnectionTimeoutError
to track error of timeout while waiting for connection
Attributes
timeout[R]
Public Class Methods
new(timeout)
click to toggle source
# File lib/gremlin_client/connection_timeout_error.rb, line 6 def initialize(timeout) @timeout = timeout end
Public Instance Methods
to_s()
click to toggle source
# File lib/gremlin_client/connection_timeout_error.rb, line 9 def to_s "#{@timeout}s" end