| 5 | * glance, and is kept short and consistent in tone. |
| 6 | */ |
| 7 | export default class MagicStringError extends Error { |
| 8 | override name = 'MagicStringError' |
| 9 | |
| 10 | constructor(message: string, options?: ErrorOptions) { |
| 11 | super(`[MagicString] ${message}`, options) |
| 12 | } |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected