memgraph/include/bolt/v1/transport/stream_error.hpp

15 lines
174 B
C++
Raw Normal View History

2016-08-02 05:14:09 +08:00
#pragma once
#include "utils/exceptions/basic_exception.hpp"
namespace bolt
{
class StreamError : BasicException
{
public:
using BasicException::BasicException;
};
}