mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
37 lines
893 B
C++
37 lines
893 B
C++
#pragma once
|
|
|
|
#include <cerrno>
|
|
#include <vector>
|
|
|
|
#include <statdaemons/Exception.h>
|
|
#include <Poco/SharedPtr.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
typedef SharedPtr<Poco::Exception> ExceptionPtr;
|
|
typedef std::vector<ExceptionPtr> Exceptions;
|
|
|
|
|
|
void throwFromErrno(const std::string & s, int code = 0, int the_errno = errno);
|
|
|
|
|
|
/** Для использования в блоке catch (...).
|
|
* Преобразует Exception, Poco::Exception, std::exception или неизвестный exception в ExceptionPtr.
|
|
*/
|
|
ExceptionPtr cloneCurrentException();
|
|
|
|
/** Попробовать записать исключение в лог (и забыть про него).
|
|
* Можно использовать в деструкторах в блоке catch (...).
|
|
*/
|
|
void tryLogCurrentException(const char * log_name);
|
|
|
|
|
|
void rethrowFirstException(Exceptions & exceptions);
|
|
|
|
|
|
}
|