mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-23 18:52:50 +02:00
13 lines
226 B
C++
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
|