memgraph/mvcc/mvcc_error.hpp
2015-12-07 21:51:55 +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;
};
}