equal
deleted
inserted
replaced
211 |
211 |
212 class CanceledError(Abort): |
212 class CanceledError(Abort): |
213 """Indicates that the user canceled the operation. |
213 """Indicates that the user canceled the operation. |
214 |
214 |
215 Examples: Close commit editor with error status, quit chistedit. |
215 Examples: Close commit editor with error status, quit chistedit. |
|
216 """ |
|
217 |
|
218 |
|
219 class SecurityError(Abort): |
|
220 """Indicates that some aspect of security failed. |
|
221 |
|
222 Examples: Bad server credentials, expired local credentials for network |
|
223 filesystem, mismatched GPG signature, DoS protection. |
216 """ |
224 """ |
217 |
225 |
218 |
226 |
219 class HookLoadError(Abort): |
227 class HookLoadError(Abort): |
220 """raised when loading a hook fails, aborting an operation |
228 """raised when loading a hook fails, aborting an operation |