| 4 | from proxy import Proxy, ProxyError, GeneralProxyError |
| 5 | |
| 6 | class Socks5AuthError(ProxyError): |
| 7 | errorCodes = ("Succeeded", |
| 8 | "Authentication is required", |
| 9 | "All offered authentication methods were rejected", |
| 10 | "Unknown username or invalid password", |
| 11 | "Unknown error") |
| 12 | |
| 13 | |
| 14 | class Socks5Error(ProxyError): |
no outgoing calls
no test coverage detected