ClickHouse/base/base/throwError.cpp
2022-04-16 03:58:50 +02:00

9 lines
138 B
C++

#include <base/throwError.h>
#include <stdexcept>
[[noreturn]] void throwError(const char * err)
{
throw std::runtime_error(err);
}