Mercurial > public > mercurial-scm > hg
comparison mercurial/error.py @ 8144:fca54469480e
ui: introduce new config parser
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 23 Apr 2009 15:40:10 -0500 |
parents | a454eeb1b827 |
children | 46293a0c7e9f |
comparison
equal
deleted
inserted
replaced
8143:507c49e297e1 | 8144:fca54469480e |
---|---|
25 def __str__(self): | 25 def __str__(self): |
26 return RevlogError.__str__(self) | 26 return RevlogError.__str__(self) |
27 | 27 |
28 class ParseError(Exception): | 28 class ParseError(Exception): |
29 """Exception raised on errors in parsing the command line.""" | 29 """Exception raised on errors in parsing the command line.""" |
30 | |
31 class ConfigError(Exception): | |
32 'Exception raised when parsing config files' | |
30 | 33 |
31 class RepoError(Exception): | 34 class RepoError(Exception): |
32 pass | 35 pass |
33 | 36 |
34 class CapabilityError(RepoError): | 37 class CapabilityError(RepoError): |