(public readonly domain: string)
| 36 | |
| 37 | class EgressBlockedError extends Error { |
| 38 | constructor(public readonly domain: string) { |
| 39 | super( |
| 40 | JSON.stringify({ |
| 41 | error_type: 'EGRESS_BLOCKED', |
| 42 | domain, |
| 43 | message: `Access to ${domain} is blocked by the network egress proxy.`, |
| 44 | }), |
| 45 | ) |
| 46 | this.name = 'EgressBlockedError' |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | // Cache for storing fetched URL content |
nothing calls this directly
no outgoing calls
no test coverage detected