Files
2026-06-10 12:38:42 -03:00

11 lines
419 B
JavaScript

import { CredentialsProviderError } from "@smithy/core/config";
export class InstanceMetadataV1FallbackError extends CredentialsProviderError {
tryNextLink;
name = "InstanceMetadataV1FallbackError";
constructor(message, tryNextLink = true) {
super(message, tryNextLink);
this.tryNextLink = tryNextLink;
Object.setPrototypeOf(this, InstanceMetadataV1FallbackError.prototype);
}
}