MCPcopy Create free account
hub / github.com/garrytan/gstack / BrowseClientError

Class BrowseClientError

make-pdf/src/types.ts:127–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125 * Structured error for browse CLI shell-out failures.
126 */
127export class BrowseClientError extends Error {
128 constructor(
129 public readonly exitCode: number,
130 public readonly command: string,
131 public readonly stderr: string,
132 ) {
133 super(`browse ${command} exited ${exitCode}: ${stderr.trim()}`);
134 this.name = "BrowseClientError";
135 }
136}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected