Exception objects should be thrown and not the pointer to the exception object. https://azure.github.io/azure-sdk/cpp_design.html#c-exceptions The pattern for the catch expects a reference to the exception and not the pointer. Example: try{ throw Myxception(); } catch (MyException const& e) { //process } |
||
|---|---|---|
| .. | ||
| azure-core | ||
| ci.yml | ||