blob: 4315fa0a6ef643c65283b72a2bf30af4860b1982 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <util/generic/yexception.h>
namespace NThreading {
//! The exception to be thrown when an operation has been cancelled
class TOperationCancelledException : public yexception {
};
}
|