operation_cancelled_exception.h 207 B

1234567891011
  1. #pragma once
  2. #include <util/generic/yexception.h>
  3. namespace NThreading {
  4. //! The exception to be thrown when an operation has been cancelled
  5. class TOperationCancelledException : public yexception {
  6. };
  7. }