diff options
Diffstat (limited to 'ext/node/polyfills/internal/errors.ts')
-rw-r--r-- | ext/node/polyfills/internal/errors.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/node/polyfills/internal/errors.ts b/ext/node/polyfills/internal/errors.ts index 5d5946d46..5a6446ae8 100644 --- a/ext/node/polyfills/internal/errors.ts +++ b/ext/node/polyfills/internal/errors.ts @@ -2248,6 +2248,16 @@ export class ERR_FALSY_VALUE_REJECTION extends NodeError { this.reason = reason; } } + +export class ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS extends NodeError { + constructor() { + super( + "ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS", + "Number of custom settings exceeds MAX_ADDITIONAL_SETTINGS", + ); + } +} + export class ERR_HTTP2_INVALID_SETTING_VALUE extends NodeRangeError { actual: unknown; min?: number; |