Files
dusklight/mods/randomizer/generator/utility/exception.hpp
T
2026-07-27 22:33:03 -07:00

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__)