ZeroTierOne/ext/librethinkdbxx/src/exceptions.h
2017-11-02 07:05:11 -07:00

13 lines
226 B
C++

#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