MCPcopy
hub / github.com/sequelize/sequelize / CommonErrorProperties

Interface CommonErrorProperties

src/errors/base-error.ts:5–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3}
4
5export interface CommonErrorProperties {
6 /** The database specific error which triggered this one */
7 readonly parent: Error;
8
9 /** The database specific error which triggered this one */
10 readonly original: Error;
11
12 /** The SQL that triggered the error */
13 readonly sql: string;
14}
15
16/**
17 * The Base Error all Sequelize Errors inherit from.

Callers

nothing calls this directly

Implementers 2

DatabaseErrorsrc/errors/database-error.ts
UniqueConstraintErrorsrc/errors/validation/unique-constrain

Calls

no outgoing calls

Tested by

no test coverage detected