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

Checkpointing some stuff. No way it'll build yet.

This commit is contained in:
Patrick LeBlanc
2019-01-18 10:19:14 -06:00
parent db10662629
commit d53471fc75
13 changed files with 462 additions and 1 deletions

View File

@ -0,0 +1,17 @@
#ifndef _SMEXECEPTIONS_H_
#define _SMEXECEPTIONS_H_
#include <exception>
class NotImplementedYet : public std::exception
{
public:
NotImplementedYet(const std::string &s);
};
NotImplementedYes::NotImplementedYet(const std::string &s) :
std::exception(s + "() isn't implemented yet.")
{
}
#endif