UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

10 lines (9 loc) • 417 B
import { CredentialsProviderError } from "@smithy/property-provider"; export class InstanceMetadataV1FallbackError extends CredentialsProviderError { constructor(message, tryNextLink = true) { super(message, tryNextLink); this.tryNextLink = tryNextLink; this.name = "InstanceMetadataV1FallbackError"; Object.setPrototypeOf(this, InstanceMetadataV1FallbackError.prototype); } }