summaryrefslogtreecommitdiff
path: root/packages/cli/src/utils/errors.ts
blob: 7708895ae25a2c290c8e5df278f03b23050ef03d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export function isNodeError(error: unknown): error is NodeJS.ErrnoException {
    return error instanceof Error && 'code' in error;
}

export function getErrorMessage(error: unknown): string {
    if (error instanceof Error) {
        return error.message;
      } else {
        // Attempt to convert the non-Error value to a string for logging
        try {
           const errorMessage = String(error);
           return errorMessage;
        } catch {
            // If String() itself fails (highly unlikely)
            return 'Failed to get error details';
        }
      }
}