pulsar-client-cpp
Loading...
Searching...
No Matches
DeprecatedException.h
1
19#ifndef DEPRECATED_EXCEPTION_HPP_
20#define DEPRECATED_EXCEPTION_HPP_
21
22#include <stdexcept>
23#include <string>
24#include <pulsar/defines.h>
25
26namespace pulsar {
27class PULSAR_PUBLIC DeprecatedException : public std::runtime_error {
28 public:
29 explicit DeprecatedException(const std::string& __arg);
30
31 private:
32 static const std::string message_prefix;
33};
34} // namespace pulsar
35
36#endif // DEPRECATED_EXCEPTION_HPP_
Definition: DeprecatedException.h:27
Definition: Authentication.h:30