// Copyright 2026-Present Datadog, Inc. https://www.datadoghq.com/
// SPDX-License-Identifier: Apache-2.0
//! Spawn-related types shared across platforms.
//!
//! Task spawning is handled internally by `SharedRuntime`; this module only
//! provides the executor-agnostic [`SpawnError`] type used in join handles.
use fmt;
/// Executor-agnostic error returned when a spawned task is aborted or panics.