memgraph/include/threading/sync/lock_timeout_error.hpp
2016-08-10 09:39:02 +01:00

10 lines
140 B
C++

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