()
| 96 | } |
| 97 | |
| 98 | export const userNotFound = (): ServiceError => { |
| 99 | return { |
| 100 | statusCode: StatusCodes.NOT_FOUND, |
| 101 | errorCode: ErrorCode.USER_NOT_FOUND, |
| 102 | message: "User not found", |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | export const orgNotFound = (): ServiceError => { |
| 107 | return { |
no outgoing calls
no test coverage detected