(message: string)
| 9 | */ |
| 10 | export class PathTraversalError extends Error { |
| 11 | constructor(message: string) { |
| 12 | super(message) |
| 13 | this.name = 'PathTraversalError' |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected