UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

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); } }