Exception: ZK::Exceptions::ChrootPathDoesNotExistError
- Inherits:
-
NoNode
- Object
- StandardError
- KeeperException
- NoNode
- ZK::Exceptions::ChrootPathDoesNotExistError
- Defined in:
- lib/zk/exceptions.rb
Overview
raised when a chrooted conection is requested but the root doesn't exist
Instance Method Summary collapse
-
#initialize(host_string, chroot_path) ⇒ ChrootPathDoesNotExistError
constructor
A new instance of ChrootPathDoesNotExistError.
Methods inherited from KeeperException
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 |