| 3 | } |
| 4 | |
| 5 | export 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. |
nothing calls this directly
no outgoing calls
no test coverage detected