Exception: Beachcomber::DaemonNotRunning

Inherits:
Error
  • Object
show all
Defined in:
lib/beachcomber/errors.rb

Overview

Raised when the daemon socket cannot be reached.

Instance Method Summary collapse

Constructor Details

#initialize(socket_path) ⇒ DaemonNotRunning

Returns a new instance of DaemonNotRunning.



7
8
9
# File 'lib/beachcomber/errors.rb', line 7

def initialize(socket_path)
  super("beachcomber daemon is not running (socket: #{socket_path})")
end