(ref: string)
| 120 | } |
| 121 | |
| 122 | export const unresolvedGitRef = (ref: string): ServiceError => { |
| 123 | return { |
| 124 | statusCode: StatusCodes.BAD_REQUEST, |
| 125 | errorCode: ErrorCode.INVALID_GIT_REF, |
| 126 | message: `Git reference "${ref}" could not be resolved.`, |
| 127 | }; |
| 128 | } |
| 129 |
no outgoing calls
no test coverage detected