memgraph/src/io/network/network_error.hpp

11 lines
142 B
C++
Raw Normal View History

2015-10-28 03:21:28 +08:00
#pragma once
#include <stdexcept>
class NetworkError : public std::runtime_error
{
public:
using std::runtime_error::runtime_error;
};