Mercurial > public > mercurial-scm > hg
comparison mercurial/error.py @ 29536:b17a6e3cd2ac
shelve: make unshelve be able to abort in any case
author | Kostia Balytskyi <ikostia@fb.com> |
---|---|
date | Wed, 13 Jul 2016 16:16:18 +0100 |
parents | 19205a0e2bf1 |
children | 318a24b52eeb |
comparison
equal
deleted
inserted
replaced
29535:da1848f07c6a | 29536:b17a6e3cd2ac |
---|---|
238 This is used for syntax errors as opposed to support errors. | 238 This is used for syntax errors as opposed to support errors. |
239 """ | 239 """ |
240 | 240 |
241 class UnsupportedBundleSpecification(Exception): | 241 class UnsupportedBundleSpecification(Exception): |
242 """error raised when a bundle specification is not supported.""" | 242 """error raised when a bundle specification is not supported.""" |
243 | |
244 class CorruptedState(Exception): | |
245 """error raised when a command is not able to read its state from file""" |