1/* 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6/// A boxed error that is `Send` and `Sync`. 7pub type BoxError = Box<dyn std::error::Error + Send + Sync>;