@aws-amplify/core
Version:
Core category of aws-amplify
12 lines (10 loc) • 318 B
JavaScript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
class NonRetryableError extends Error {
constructor() {
super(...arguments);
this.nonRetryable = true;
}
}
export { NonRetryableError };
//# sourceMappingURL=NonRetryableError.mjs.map