(link: string | null = null, raiseMaximum1Time: boolean = true)
| 7 | raiseMaximum1Time: boolean |
| 8 | |
| 9 | constructor(link: string | null = null, raiseMaximum1Time: boolean = true) { |
| 10 | super(link ? `Not found for link: ${link}` : "Not Found") |
| 11 | this.link = link |
| 12 | this.raisedOnce = false |
| 13 | this.raiseMaximum1Time = raiseMaximum1Time |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | function isErrorsInstance(instances: any[], error: any): [boolean, number] { |
nothing calls this directly
no outgoing calls
no test coverage detected