Directory : /opt/puppetlabs/puppet/lib/ruby/gems/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/ |
Current File : //opt/puppetlabs/puppet/lib/ruby/gems/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/proxy/errors.rb |
require 'net/ssh/errors' module Net; module SSH; module Proxy # A general exception class for all Proxy errors. class Error < Net::SSH::Exception; end # Used for reporting proxy connection errors. class ConnectError < Error; end # Used when the server doesn't recognize the user's credentials. class UnauthorizedError < Error; end end; end; end