UNPKG

837 BJavaScriptView Raw
1'use strict'
2
3const ApplyEmptyCommitError = Symbol('ApplyEmptyCommitError')
4const GetBackupStashError = Symbol('GetBackupStashError')
5const GetStagedFilesError = Symbol('GetStagedFilesError')
6const GitError = Symbol('GitError')
7const GitRepoError = Symbol('GitRepoError')
8const HideUnstagedChangesError = Symbol('HideUnstagedChangesError')
9const RestoreMergeStatusError = Symbol('RestoreMergeStatusError')
10const RestoreOriginalStateError = Symbol('RestoreOriginalStateError')
11const RestoreUnstagedChangesError = Symbol('RestoreUnstagedChangesError')
12const TaskError = Symbol('TaskError')
13
14module.exports = {
15 ApplyEmptyCommitError,
16 GetBackupStashError,
17 GetStagedFilesError,
18 GitError,
19 GitRepoError,
20 HideUnstagedChangesError,
21 RestoreMergeStatusError,
22 RestoreOriginalStateError,
23 RestoreUnstagedChangesError,
24 TaskError,
25}