Merge pull request #744 from matthiasbeyer/libimagstorestdhook/git-remove-unused-error-kinds
libimagstorestdhook/git: Remove unused error kinds
This commit is contained in:
commit
df95338165
1 changed files with 9 additions and 17 deletions
|
@ -9,35 +9,27 @@ generate_error_module!(
|
||||||
ConfigError => "Configuration Error",
|
ConfigError => "Configuration Error",
|
||||||
NoConfigError => "No Configuration",
|
NoConfigError => "No Configuration",
|
||||||
ConfigTypeError => "Configuration value type wrong",
|
ConfigTypeError => "Configuration value type wrong",
|
||||||
RuntimeInformationSetupError => "Couldn't setup runtime information for git hook",
|
|
||||||
RepositoryBackendError => "Error in the git library",
|
|
||||||
RepositoryError => "Error while interacting with git repository",
|
RepositoryError => "Error while interacting with git repository",
|
||||||
|
RepositoryBackendError => "Error in the git library",
|
||||||
RepositoryBranchError => "Error while interacting with git branch(es)",
|
RepositoryBranchError => "Error while interacting with git branch(es)",
|
||||||
RepositoryBranchNameFetchingError => "Error while fetching branch name",
|
RepositoryBranchNameFetchingError => "Error while fetching branch name",
|
||||||
RepositorySignatureFetchingError => "Error while fetching Authors/Committers signature",
|
|
||||||
RepositoryIndexFetchingError => "Error while fetching Repository Index",
|
RepositoryIndexFetchingError => "Error while fetching Repository Index",
|
||||||
RepositoryIndexWritingError => "Error while writing Repository Index",
|
RepositoryIndexWritingError => "Error while writing Repository Index",
|
||||||
RepositoryPathAddingError => "Error while adding Path to Index",
|
RepositoryPathAddingError => "Error while adding Path to Index",
|
||||||
RepositoryTreeWritingError => "Error while writing repository tree",
|
|
||||||
RepositoryTreeFindingError => "Error while finding repository tree",
|
|
||||||
RepositoryCommitFindingError => "Error while finding commit",
|
|
||||||
RepositoryCommittingError => "Error while committing",
|
RepositoryCommittingError => "Error while committing",
|
||||||
RepositoryHeadFetchingError => "Error while fetching HEAD",
|
|
||||||
RepositoryHeadTargetFetchingError => "Error while fetching target of HEAD",
|
|
||||||
RepositoryParentFetchingError => "Error while fetching parent of commit",
|
RepositoryParentFetchingError => "Error while fetching parent of commit",
|
||||||
|
|
||||||
HeadFetchError => "Error while getting HEAD",
|
HeadFetchError => "Error while getting HEAD",
|
||||||
NotOnBranch => "No Branch is checked out",
|
NotOnBranch => "No Branch is checked out",
|
||||||
MkRepo => "Repository creation error",
|
MkRepo => "Repository creation error",
|
||||||
MkSignature => "Error while building Signature object",
|
MkSignature => "Error while building Signature object",
|
||||||
StoreIdHandlingError => "Error handling the store id object",
|
|
||||||
StoreIdStripError => "Couldn't strip prefix from StoreID object",
|
|
||||||
|
|
||||||
RepositoryFileStatusError => "Error while getting file status",
|
RepositoryFileStatusError => "Error while getting file status",
|
||||||
|
|
||||||
GitConfigFetchError => "Error fetching git config",
|
GitConfigFetchError => "Error fetching git config",
|
||||||
GitConfigEditorFetchError => "Error fetching 'editor' from git config",
|
GitConfigEditorFetchError => "Error fetching 'editor' from git config",
|
||||||
CommitEditorInstantiationError => "Error when trying to instantiate commit editor",
|
EditorError => "Error while calling editor"
|
||||||
EditorError => "Error while calling editor"
|
|
||||||
);
|
);
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue