Lightstreamer C++ Client SDK
Loading...
Searching...
No Matches
LightstreamerError.h
1#ifndef INCLUDED_Lightstreamer_LightstreamerError
2#define INCLUDED_Lightstreamer_LightstreamerError
3
4#include <stdexcept>
5#include <string>
6
7namespace Lightstreamer {
8
12class LightstreamerError : public std::runtime_error {
13public:
17 LightstreamerError(const std::string& message) : std::runtime_error(message) {}
18};
19
20} // namespace Lightstreamer
21
22#endif
The LightstreamerError class provides a base class for exceptions thrown by the library.
Definition LightstreamerError.h:12
LightstreamerError(const std::string &message)
Constructs a LightstreamerError object carrying the given message.
Definition LightstreamerError.h:17