memgraph/io/uv/uv_error.hpp
Dominik Tomičević 55aa4f7fa1 moved uv to io
2015-09-20 14:30:26 +02:00

20 lines
284 B
C++

#ifndef MEMGRAPH_SERVER_UV_UV_ERROR_HPP
#define MEMGRAPH_SERVER_UV_UV_ERROR_HPP
#include <stdexcept>
#include <string>
namespace uv
{
class UvError : public std::runtime_error
{
public:
UvError(const std::string& message)
: std::runtime_error(message) {}
};
}
#endif