UNPKG

@aws-amplify/data-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer - Aliased to use `Data` name scheme.

9 lines (8 loc) 316 B
import { ProviderError } from "./ProviderError"; export class CredentialsProviderError extends ProviderError { constructor(message, options = true) { super(message, options); this.name = "CredentialsProviderError"; Object.setPrototypeOf(this, CredentialsProviderError.prototype); } }