(public currentName: string)
| 6 | |
| 7 | class CircularDependenciesError extends Error { |
| 8 | constructor(public currentName: string) { |
| 9 | super('Circular dependencies error'); |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | class ForbiddenPackageRefError extends Error { |
nothing calls this directly
no outgoing calls
no test coverage detected