memgraph/src/io/network/network_error.hpp

14 lines
229 B
C++
Raw Normal View History

2015-10-28 03:21:28 +08:00
#pragma once
#include <stdexcept>
#include "utils/exceptions/stacktrace_exception.hpp"
2016-08-02 05:14:09 +08:00
namespace io::network {
2016-08-02 05:14:09 +08:00
class NetworkError : public StacktraceException {
public:
using StacktraceException::StacktraceException;
2015-10-28 03:21:28 +08:00
};
2016-08-02 05:14:09 +08:00
}