procxy / ErrorInfo
Interface: ErrorInfo
Defined in: src/shared/protocol.ts:151
Error information serialized in Response messages. Preserves error message, stack trace, name, and optional code.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
code? | string | Optional error code (e.g., 'ENOENT', 'EACCES') for Node.js system errors | src/shared/protocol.ts:159 |
message | string | Human-readable error description, copied from Error.message | src/shared/protocol.ts:153 |
name | string | Error class name (e.g., 'TypeError', 'RangeError'), copied from Error.name | src/shared/protocol.ts:157 |
stack? | string | Full stack trace captured in the child process; absent for non-Error throws | src/shared/protocol.ts:155 |