mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
47 lines
1022 B
C++
47 lines
1022 B
C++
#pragma once
|
|
|
|
#include <errno.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <Poco/Exception.h>
|
|
#include <Poco/SharedPtr.h>
|
|
|
|
#include <DB/Core/StackTrace.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Exception : public Poco::Exception
|
|
{
|
|
public:
|
|
Exception(int code = 0);
|
|
Exception(const std::string & msg, int code = 0);
|
|
Exception(const std::string & msg, const std::string & arg, int code = 0);
|
|
Exception(const std::string & msg, const Exception & exc, int code = 0);
|
|
Exception(const Exception & exc);
|
|
explicit Exception(const Poco::Exception & exc);
|
|
~Exception() throw();
|
|
Exception & operator = (const Exception & exc);
|
|
const char * name() const throw();
|
|
const char * className() const throw();
|
|
Exception * clone() const;
|
|
void rethrow() const;
|
|
|
|
const StackTrace & getStackTrace() const { return trace; }
|
|
|
|
private:
|
|
StackTrace trace;
|
|
};
|
|
|
|
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);
|
|
|
|
}
|