blob: 9416843359af13541efaed342c61878344642c40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/python
"""
Exceptions defined by paramiko.
"""
class SSHException (Exception):
"""
Exception thrown by failures in SSH2 protocol negotiation or logic errors.
"""
pass
class PasswordRequiredException (SSHException):
"""
Exception thrown when a password is needed to unlock a private key file.
"""
pass
|