// SPDX-License-Identifier: BSD-2-Clause // author: Max Kellermann #include "ExceptionFormatter.hxx" #include "util/Exception.hxx" auto fmt::formatter::format(std::exception_ptr e, format_context &ctx) const -> format_context::iterator { return formatter::format(GetFullMessage(std::move(e)), ctx); }