memgraph/include/threading/sync/lock_timeout_error.hpp

10 lines
140 B
C++
Raw Normal View History

2015-11-26 09:52:51 +08:00
#pragma once
#include <stdexcept>
class LockTimeoutError : public std::runtime_error
{
public:
using runtime_error::runtime_error;
};