Exception: Spacebunny::ClientNotConnected

Inherits:
StandardError
  • Object
show all
Defined in:
lib/spacebunny/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ ClientNotConnected

Returns a new instance of ClientNotConnected.



71
72
73
74
# File 'lib/spacebunny/exceptions.rb', line 71

def initialize(message = nil)
  message = message || 'Client not connected! Check internet connection'
  super(message)
end