diff options
author | Jamis Buck <jamis@37signals.com> | 2007-07-25 04:53:11 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2007-07-25 04:53:11 +0000 |
commit | ffc496b4c9746325618d34ec29fa98bdc49b9d5f (patch) | |
tree | 8ee1c020a93dd8c6d4f23fb1734747d32da8e2cb /lib/net/ssh/errors.rb | |
parent | 57a2e22b0873f99e9d6d66026df30de1296645da (diff) | |
download | net-ssh-ffc496b4c9746325618d34ec29fa98bdc49b9d5f.tar.gz |
basic connection protocol support
git-svn-id: http://svn.jamisbuck.org/net-ssh/branches/v2@120 1d2a57f2-1ded-0310-ad52-83097a15a5de
Diffstat (limited to 'lib/net/ssh/errors.rb')
-rw-r--r-- | lib/net/ssh/errors.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/net/ssh/errors.rb b/lib/net/ssh/errors.rb index a4fd23c..956b951 100644 --- a/lib/net/ssh/errors.rb +++ b/lib/net/ssh/errors.rb @@ -2,4 +2,6 @@ module Net; module SSH class Exception < ::RuntimeError; end class AuthenticationFailed < Exception; end + + class Disconnect < Exception; end end; end
\ No newline at end of file |