| 20 | |
| 21 | |
| 22 | class GeneralProxyError(ProxyError): |
| 23 | errorCodes = ("Success", |
| 24 | "Invalid data", |
| 25 | "Not connected", |
| 26 | "Not available", |
| 27 | "Bad proxy type", |
| 28 | "Bad input", |
| 29 | "Timed out", |
| 30 | "Network unreachable", |
| 31 | "Connection refused", |
| 32 | "Host unreachable") |
| 33 | |
| 34 | |
| 35 | class Proxy(AdvancedDispatcher): |
no outgoing calls
no test coverage detected