You've already forked mariadb-columnstore-engine
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:
@ -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
|
||||
|
Reference in New Issue
Block a user