sela
exception.hpp
Go to the documentation of this file.
1 #ifndef _EXCEPTION_H_
2 #define _EXCEPTION_H_
3 
4 #include <string>
5 
6 namespace data {
7 class Exception {
8 public:
9  const std::string exceptionMessage;
10  explicit Exception(const std::string&& exceptionMessage) noexcept
11  : exceptionMessage(exceptionMessage)
12  {
13  }
14 };
15 }
16 
17 #endif
Definition: audio_packet.hpp:4
Exception(const std::string &&exceptionMessage) noexcept
Definition: exception.hpp:10
Definition: exception.hpp:7
const std::string exceptionMessage
Definition: exception.hpp:9