memgraph/include/mvcc/mvcc_error.hpp
2016-08-10 09:39:02 +01:00

15 lines
154 B
C++

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