UNPKG

975 BJavaScriptView Raw
1export const ApplyEmptyCommitError = Symbol('ApplyEmptyCommitError')
2
3export const ConfigNotFoundError = new Error('Configuration could not be found')
4
5export const ConfigFormatError = new Error('Configuration should be an object or a function')
6
7export const ConfigEmptyError = new Error('Configuration should not be empty')
8
9export const GetBackupStashError = Symbol('GetBackupStashError')
10
11export const GetStagedFilesError = Symbol('GetStagedFilesError')
12
13export const GitError = Symbol('GitError')
14
15export const GitRepoError = Symbol('GitRepoError')
16
17export const HideUnstagedChangesError = Symbol('HideUnstagedChangesError')
18
19export const InvalidOptionsError = new Error('Invalid Options')
20
21export const RestoreMergeStatusError = Symbol('RestoreMergeStatusError')
22
23export const RestoreOriginalStateError = Symbol('RestoreOriginalStateError')
24
25export const RestoreUnstagedChangesError = Symbol('RestoreUnstagedChangesError')
26
27export const TaskError = Symbol('TaskError')