Files
comaps/libs/search/cancel_exception.hpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

18 lines
458 B
C++

#pragma once
#include "base/cancellable.hpp"
#include "base/exception.hpp"
namespace search
{
// This exception can be thrown from the deep darkness of search and
// geometry retrieval for fast cancellation of time-consuming tasks.
DECLARE_EXCEPTION(CancelException, RootException);
inline void BailIfCancelled(base::Cancellable const & cancellable)
{
if (cancellable.IsCancelled())
MYTHROW(CancelException, ("Cancelled"));
}
} // namespace search