RethinkDB native connector work, minor fixes.

This commit is contained in:
Adam Ierymenko
2017-11-02 07:05:11 -07:00
parent a6203ed038
commit 4e88c80a22
219 changed files with 33295 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef EXCEPTIONS_H
#define EXCEPTIONS_H
namespace RethinkDB {
class TimeoutException : public std::exception {
public:
const char *what() const throw () { return "operation timed out"; }
};
}
#endif // EXCEPTIONS_H