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 some stuff. No way it'll build yet.
This commit is contained in:
17
utils/cloudio/sm_exceptions.h
Normal file
17
utils/cloudio/sm_exceptions.h
Normal 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
|
Reference in New Issue
Block a user