ClickHouse/dbms/include/DB/Core/Exception.h
2010-03-01 16:59:51 +00:00

17 lines
279 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef DBMS_CORE_EXCEPTION_H
#define DBMS_CORE_EXCEPTION_H
#include <Poco/Exception.h>
namespace DB
{
/** Тип исключения, чтобы отличать его от других.
*/
POCO_DECLARE_EXCEPTION(Foundation_API, Exception, Poco::Exception);
}
#endif