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