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