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