10Duke Scale C++ Client
Loading...
Searching...
No Matches
Canceled.h
1#ifndef TENDUKE_CANCELED_H
2#define TENDUKE_CANCELED_H
3
4#include "./InterruptedException.h"
5
6namespace tenduke {
7
12{
13public:
18 explicit Canceled(const std::string &message)
20 {}
21};
22
23}
24
25#endif //TENDUKE_CANCELED_H
Exception thrown when user has canceled an action.
Definition Canceled.h:12
Canceled(const std::string &message)
Constructs new instance.
Definition Canceled.h:18
Exception thrown when an action is interrupted for some reason.
Definition InterruptedException.h:12
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7