A timeout exception indicates that a blocking operation has timed out.
| 29 | |
| 30 | |
| 31 | class Timeout(ProtonException): |
| 32 | """ |
| 33 | A timeout exception indicates that a blocking operation has timed |
| 34 | out. |
| 35 | """ |
| 36 | pass |
| 37 | |
| 38 | |
| 39 | class Interrupt(ProtonException): |