mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
9 lines
584 B
C++
9 lines
584 B
C++
#pragma once
|
|
|
|
/// Throw DB::Exception-like exception before its definition.
|
|
/// DB::Exception derived from Poco::Exception derived from std::exception.
|
|
/// DB::Exception generally caught as Poco::Exception. std::exception generally has other catch blocks and could lead to other outcomes.
|
|
/// DB::Exception is not defined yet. It'd better to throw Poco::Exception but we do not want to include any big header here, even <string>.
|
|
/// So we throw some std::exception instead in the hope its catch block is the same as DB::Exception one.
|
|
[[noreturn]] void throwError(const char * err);
|