(message: string, options?: { cause: Error })
| 23 | class PackageUpdateError extends Error { |
| 24 | override cause?: Error; |
| 25 | constructor(message: string, options?: { cause: Error }) { |
| 26 | super(message); |
| 27 | this.name = 'PackageUpdateError'; |
| 28 | this.cause = options?.cause; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | // Constants for URLs |
nothing calls this directly
no outgoing calls
no test coverage detected