branch | stable |
changeset 21184 | 28d76afa1568 |
parent 18931 | 3c224e0949de |
child 21618 | 7568f5c1c801 |
21183:4345274adc4b | 21184:28d76afa1568 |
---|---|
92 class SignalInterrupt(KeyboardInterrupt): |
92 class SignalInterrupt(KeyboardInterrupt): |
93 """Exception raised on SIGTERM and SIGHUP.""" |
93 """Exception raised on SIGTERM and SIGHUP.""" |
94 |
94 |
95 class SignatureError(Exception): |
95 class SignatureError(Exception): |
96 pass |
96 pass |
97 |
|
98 class PushRaced(RuntimeError): |
|
99 """An exception raised during unbundling that indicate a push race""" |
|
100 |