Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/error.py @ 7637:1d54e2f6c0b7
error: move repo errors
rename NoCapability to CapabilityError
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 12 Jan 2009 10:42:31 -0600 |
parents | e3f8c6d6b72e |
children | 7197812e8d44 |
comparison
equal
deleted
inserted
replaced
7636:e3f8c6d6b72e | 7637:1d54e2f6c0b7 |
---|---|
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 RepoError(Exception): | |
32 pass | |
33 | |
34 class CapabilityError(RepoError): | |
35 pass |