From 4e88c80a22b6ca982341413ee806ade0df57b4b7 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 2 Nov 2017 07:05:11 -0700 Subject: RethinkDB native connector work, minor fixes. --- ext/librethinkdbxx/src/exceptions.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ext/librethinkdbxx/src/exceptions.h (limited to 'ext/librethinkdbxx/src/exceptions.h') diff --git a/ext/librethinkdbxx/src/exceptions.h b/ext/librethinkdbxx/src/exceptions.h new file mode 100644 index 00000000..08c0b0a0 --- /dev/null +++ b/ext/librethinkdbxx/src/exceptions.h @@ -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 -- cgit v1.2.3