7#include "platform/SourceLocation.h"
20 NcError(std::string msg, NC_SOURCE_LOCATION location = NC_SOURCE_LOCATION_CURRENT)
21 : std::runtime_error(msg),
22 m_message{Format(msg, location)}
26 NcError(std::string msg, std::string detail, NC_SOURCE_LOCATION location = NC_SOURCE_LOCATION_CURRENT)
27 : std::runtime_error(msg),
28 m_message{Format(msg, detail, location)}
32 const char* what()
const noexcept override
34 return m_message.c_str();
38 std::string m_message;
40 auto Format(
const std::string& msg,
const NC_SOURCE_LOCATION& location) -> std::string
42 return fmt::format(
"File: {}\nFunc: {}\nLine: {}\n {}\n",
43 location.file_name(), location.function_name(), location.line(), msg);
46 auto Format(
const std::string& msg,
const std::string& detail,
const NC_SOURCE_LOCATION& location) -> std::string
48 return fmt::format(
"File: {}\nFunc: {}\nLine: {}\n {}\n {}\n",
49 location.file_name(), location.function_name(), location.line(), msg, detail);
54#ifdef NC_ASSERT_ENABLED
56#define NC_ASSERT(expr, msg) if(!(expr)) throw nc::NcError(msg);
58#define NC_ASSERT(expr, msg)
Common exception type used throughout NcEngine.
Definition: NcError.h:18