| 20 | |
| 21 | // Custom error classes for domain blocking |
| 22 | class DomainBlockedError extends Error { |
| 23 | constructor(domain: string) { |
| 24 | super(`Code is unable to fetch from ${domain}`) |
| 25 | this.name = 'DomainBlockedError' |
nothing calls this directly
no outgoing calls
no test coverage detected