memgraph/include/bolt/v1/transport/stream_error.hpp
2016-08-10 09:39:02 +01:00

15 lines
174 B
C++

#pragma once
#include "utils/exceptions/basic_exception.hpp"
namespace bolt
{
class StreamError : BasicException
{
public:
using BasicException::BasicException;
};
}