| 1 | 'use strict'; |
| 2 | |
| 3 | class SqliteError extends Error { |
| 4 | constructor(message, code) { |
| 5 | if (typeof code !== 'string') { |
| 6 | throw new TypeError('Expected second argument to be a string'); |
nothing calls this directly
no outgoing calls
no test coverage detected