mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-03 00:16:36 -04:00
8 lines
184 B
C++
8 lines
184 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
#include "../utility/log.hpp"
|
|
|
|
#define RUNTIME_ERROR(msg) std::runtime_error(std::string(msg) + " on line " TOSTRING(__LINE__) " of " __FILENAME__)
|