1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Checkpointing, not ready to build yet.

This commit is contained in:
Patrick LeBlanc
2019-01-21 16:41:04 -06:00
parent d53471fc75
commit d84dcb9ccc
6 changed files with 266 additions and 9 deletions

View File

@ -3,15 +3,42 @@
#include <exception>
namespace idbdatafile
{
class NotImplementedYet : public std::exception
{
public:
NotImplementedYet(const std::string &s);
};
NotImplementedYes::NotImplementedYet(const std::string &s) :
class FailedToSend : public std::runtime_error
{
public:
FailedToSend(const std::string &s);
};
class FailedToRecv : public std::runtime_error
{
public:
FailedToRecv(const std::string &s);
};
NotImplementedYet::NotImplementedYet(const std::string &s) :
std::exception(s + "() isn't implemented yet.")
{
}
FailedToSend::FailedToSend(const std::string &s) :
std::runtime_error(s)
{
}
FailedToRecv::FailedToRecv(const std::string &s) :
std::runtime_error(s)
{
}
}
#endif