(code: PandaErrorCode, message: string, opts?: { hint?: string; cause?: unknown })
| 20 | readonly hint?: string |
| 21 | |
| 22 | constructor(code: PandaErrorCode, message: string, opts?: { hint?: string; cause?: unknown }) { |
| 23 | super(message, { cause: opts?.cause }) |
| 24 | this.code = `ERR_PANDA_${code}` |
| 25 | this.hint = opts?.hint |
| 26 | } |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected