| 1 | import { CustomError } from "./error.js"; |
| 2 | |
| 3 | export class InvalidParameterError extends CustomError { |
| 4 | constructor(message: string, cause?: Error) { |
| 5 | super(message, cause); |
| 6 | } |
nothing calls this directly
no outgoing calls
no test coverage detected