mirror of
https://github.com/nodejs/node.git
synced 2025-08-18 23:28:49 +02:00

PR-URL: https://github.com/nodejs/node/pull/53014 Reviewed-By: Luke Karrys <luke@lukekarrys.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
36 lines
579 B
JavaScript
36 lines
579 B
JavaScript
|
|
const maxRetry = 3
|
|
|
|
class GitError extends Error {
|
|
shouldRetry () {
|
|
return false
|
|
}
|
|
}
|
|
|
|
class GitConnectionError extends GitError {
|
|
constructor () {
|
|
super('A git connection error occurred')
|
|
}
|
|
|
|
shouldRetry (number) {
|
|
return number < maxRetry
|
|
}
|
|
}
|
|
|
|
class GitPathspecError extends GitError {
|
|
constructor () {
|
|
super('The git reference could not be found')
|
|
}
|
|
}
|
|
|
|
class GitUnknownError extends GitError {
|
|
constructor () {
|
|
super('An unknown git error occurred')
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
GitConnectionError,
|
|
GitPathspecError,
|
|
GitUnknownError,
|
|
}
|