summaryrefslogtreecommitdiffstats
path: root/error.py
diff options
context:
space:
mode:
Diffstat (limited to 'error.py')
-rw-r--r--error.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/error.py b/error.py
index ed4a90b7..cee977f9 100644
--- a/error.py
+++ b/error.py
@@ -56,6 +56,10 @@ class RepoUnhandledExceptionError(RepoExitError):
56 self.error = error 56 self.error = error
57 57
58 58
59class SilentRepoExitError(RepoExitError):
60 """RepoExitError that should no include CLI logging of issue/issues."""
61
62
59class ManifestParseError(RepoExitError): 63class ManifestParseError(RepoExitError):
60 """Failed to parse the manifest file.""" 64 """Failed to parse the manifest file."""
61 65
@@ -125,6 +129,10 @@ class DownloadError(RepoExitError):
125 return self.reason 129 return self.reason
126 130
127 131
132class InvalidArgumentsError(RepoExitError):
133 """Invalid command Arguments."""
134
135
128class SyncError(RepoExitError): 136class SyncError(RepoExitError):
129 """Cannot sync repo.""" 137 """Cannot sync repo."""
130 138