(message: string, options?: ErrorOptions)
| 141 | } |
| 142 | |
| 143 | export function createNotSupportedError(message: string, options?: ErrorOptions) { |
| 144 | return new ORMError(ORMErrorReason.NOT_SUPPORTED, message, options); |
| 145 | } |
| 146 | |
| 147 | export function createInternalError(message: string, model?: string, options?: ErrorOptions) { |
| 148 | const error = new ORMError(ORMErrorReason.INTERNAL_ERROR, message, options); |
no outgoing calls
no test coverage detected