memgraph/include/query/exception/decoder_exception.hpp

10 lines
165 B
C++

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