-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.ts
24 lines (23 loc) · 901 Bytes
/
errors.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* @module
*/
export {
GitHubApiAuthRatelimitedError,
GitHubApiBadCredentialsError,
GitHubApiCommonErrors,
GitHubApiGeneralServerError,
GitHubApiGeneralUserError,
GitHubApiNoCommitFoundForGitRefError,
GitHubApiRatelimitedError,
GitHubApiRepoIsEmptyError,
GitHubApiThingNotExistsOrYouDontHaveAccessError,
} from './src/commonErrors.js';
export * from './src/TaggedErrorVerifyingCause.js';
export { FailedToCastDataToReadableStreamError } from './src/castToReadableStream.js';
export {
FailedToParseGitLFSInfoError,
FailedToParseResponseFromRepoPathContentsMetaInfoAPIError,
InconsistentExpectedAndRealContentSizeError,
} from './src/getPathContents/index.js';
export { FailedToUnpackRepoFolderTarGzStreamToFsError } from './src/unpackRepoFolderTarGzStreamToFs.js';
export { FailedToWriteFileStreamToDestinationPathError } from './src/writeFileStreamToDestinationPath.js';