| 35 | const UNSAFE_OBJECT_KEYS = new Set(['__proto__', 'constructor', 'prototype']); |
| 36 | |
| 37 | export class RequestCustomizationValidationError extends Error { |
| 38 | constructor(message: string) { |
| 39 | super(message); |
| 40 | this.name = 'RequestCustomizationValidationError'; |
nothing calls this directly
no outgoing calls
no test coverage detected