1
0
Fork 0
forked from blue/lmdbal

some more docs, doc build fix

This commit is contained in:
Blue 2023-08-13 14:53:07 -03:00
parent 161a850088
commit 7b26d57ab6
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
6 changed files with 85 additions and 10 deletions

View file

@ -33,9 +33,9 @@ public:
Exception();
virtual ~Exception();
virtual std::string getMessage() const = 0; /**<\brief returns exception message*/
virtual std::string getMessage() const = 0; /**<\brief returns exception message*/
const char* what() const noexcept( true ) override;
const char* what() const noexcept( true ) override; /**<\brief system exception method that is actually called to show the message*/
};
/**