Exception: ZK::Exceptions::ChrootPathDoesNotExistError

Inherits:
NoNode show all
Defined in:
lib/zk/exceptions.rb

Overview

raised when a chrooted conection is requested but the root doesn't exist

Instance Method Summary collapse

Methods inherited from KeeperException

by_code, recognized_code?

Constructor Details

#initialize(host_string, chroot_path) ⇒ ChrootPathDoesNotExistError

Returns a new instance of ChrootPathDoesNotExistError.



149
150
151
# File 'lib/zk/exceptions.rb', line 149

def initialize(host_string, chroot_path)
  super("Chrooted connection to #{host_string} at #{chroot_path} requested, but path did not exist")
end