MCPcopy Create free account
hub / github.com/callstackincubator/polygen / constructor

Method constructor

packages/polygen/src/api/errors.ts:5–8  ·  view source on GitHub ↗
(message: string, ...args: any[])

Source from the content-addressed store, hash-verified

3 */
4export class CompileError extends Error {
5 constructor(message: string, ...args: any[]) {
6 super(message, ...args);
7 this.name = 'CompileError';
8 }
9}
10
11/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected