(domain: string)
| 27 | |
| 28 | class DomainCheckFailedError extends Error { |
| 29 | constructor(domain: string) { |
| 30 | super( |
| 31 | `Unable to verify if domain ${domain} is safe to fetch. This may be due to network restrictions or enterprise security policies blocking claude.ai.`, |
| 32 | ) |
| 33 | this.name = 'DomainCheckFailedError' |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | class EgressBlockedError extends Error { |
nothing calls this directly
no outgoing calls
no test coverage detected