UNPKG

@aws-amplify/core

Version:
10 lines (8 loc) 250 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 export class NonRetryableError extends Error { public readonly nonRetryable = true; constructor(message: string) { super(message); } }