UNPKG

@aws-amplify/graphql-api-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer.

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