Exception: Spacebunny::ClientNotSetup

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

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ ClientNotSetup

Returns a new instance of ClientNotSetup.



78
79
80
81
# File 'lib/spacebunny/exceptions.rb', line 78

def initialize(message = nil)
  message = message || "'Client not setup. Did you call 'connect'?'"
  super(message)
end