lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
10 lines (9 loc) • 364 B
JavaScript
import { ProviderError } from "./ProviderError";
export class CredentialsProviderError extends ProviderError {
constructor(message, tryNextLink = true) {
super(message, tryNextLink);
this.tryNextLink = tryNextLink;
this.name = "CredentialsProviderError";
Object.setPrototypeOf(this, CredentialsProviderError.prototype);
}
}