File: errors.rb

package info (click to toggle)
libnet-ssh2-ruby 2.0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 812 kB
  • ctags: 1,400
  • sloc: ruby: 8,839; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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