memgraph/include/mvcc/mvcc_error.hpp

15 lines
154 B
C++
Raw Normal View History

#pragma once
#include <stdexcept>
namespace mvcc
{
class MvccError : public std::runtime_error
{
public:
using runtime_error::runtime_error;
};
}