NcEngine
NcError.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "platform/SourceLocation.h"
8
9#include "fmt/format.h"
10
11#include <stdexcept>
12#include <string>
13
14namespace nc
15{
17class NcError : public std::runtime_error
18{
19 public:
20 NcError(std::string msg, NC_SOURCE_LOCATION location = NC_SOURCE_LOCATION_CURRENT)
21 : std::runtime_error(msg),
22 m_message{Format(msg, location)}
23 {
24 }
25
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)}
29 {
30 }
31
32 const char* what() const noexcept override
33 {
34 return m_message.c_str();
35 }
36
37 private:
38 std::string m_message;
39
40 auto Format(const std::string& msg, const NC_SOURCE_LOCATION& location) -> std::string
41 {
42 return fmt::format("File: {}\nFunc: {}\nLine: {}\n {}\n",
43 location.file_name(), location.function_name(), location.line(), msg);
44 }
45
46 auto Format(const std::string& msg, const std::string& detail, const NC_SOURCE_LOCATION& location) -> std::string
47 {
48 return fmt::format("File: {}\nFunc: {}\nLine: {}\n {}\n {}\n",
49 location.file_name(), location.function_name(), location.line(), msg, detail);
50 }
51};
52} // namespace nc
53
54#ifdef NC_ASSERT_ENABLED
56#define NC_ASSERT(expr, msg) if(!(expr)) throw nc::NcError(msg);
57#else
58#define NC_ASSERT(expr, msg)
59#endif
Common exception type used throughout NcEngine.
Definition: NcError.h:18