Serial-TCP/IPbridge  1.0
threading_error.h
Go to the documentation of this file.
1 
12 #ifndef THREADING_ERROR_H
13 #define THREADING_ERROR_H
14 
15 #include "base_exception.h"
16 
21  public:
22  explicit ThreadingError(const std::string &errorMessage):
23  BaseException(errorMessage) {}
24 };
25 
26 #endif // #ifndef THREADING_ERROR_H
27 
28 // End of file threading_error.h
ThreadingError(const std::string &errorMessage)
Definition: threading_error.h:22
Exception for threading errors reporting.
Definition: threading_error.h:20
BaseException class - declarations.
Base exception class for all project exceptions.
Definition: base_exception.h:23