pages235/src/guessProblem.ts
2024-01-04 05:08:53 +05:30

5 lines
177 B
TypeScript

export const guessProblem = (errorMessage: string) => {
if (errorMessage.endsWith('Socket error: ECONNREFUSED')) {
return 'Most probably the server is not running.'
}
}