1#ifndef LIBSBX_UTILITY_EXCEPTION_HPP_
2#define LIBSBX_UTILITY_EXCEPTION_HPP_
6#include <source_location>
11#include <fmt/format.h>
13#include <libsbx/utility/target.hpp>
15namespace sbx::utility {
19 template<
typename... Args>
20 runtime_error(fmt::format_string<Args...> fmt, Args&&... args)
21 : std::runtime_error{fmt::format(fmt, std::forward<Args>(args)...)} { }
Definition: exception.hpp:17