diff options
author | Conley Owens <cco3@android.com> | 2012-11-16 10:39:24 -0800 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2012-11-16 10:39:24 -0800 |
commit | a67df63ef18f7bcd1398dc5c3622c01c3fcad15d (patch) | |
tree | c456ef285ded2feb1eb0d9339f3f030f937658ef /error.py | |
parent | f91074881fb437e8cba8f9be81bd63cda5e0a557 (diff) | |
parent | 75ee0570da09abb1d2bbefe0d25f0560727e6b71 (diff) | |
download | git-repo-a67df63ef18f7bcd1398dc5c3622c01c3fcad15d.tar.gz |
Merge "Raise a NoManifestException when the manifest DNE"
Diffstat (limited to 'error.py')
-rw-r--r-- | error.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,10 @@ class ManifestInvalidRevisionError(Exception): | |||
21 | """The revision value in a project is incorrect. | 21 | """The revision value in a project is incorrect. |
22 | """ | 22 | """ |
23 | 23 | ||
24 | class NoManifestException(Exception): | ||
25 | """The required manifest does not exist. | ||
26 | """ | ||
27 | |||
24 | class EditorError(Exception): | 28 | class EditorError(Exception): |
25 | """Unspecified error from the user's text editor. | 29 | """Unspecified error from the user's text editor. |
26 | """ | 30 | """ |