Files
memgraph/src/query/exception/decoder_exception.hpp

9 lines
184 B
C++

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