2012-06-29 05:18:28 +00:00
|
|
|
# -*- coding: binary -*-
|
2010-02-16 19:18:19 +00:00
|
|
|
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
|