azure-sdk-for-cpp/sdk
Rick Winter bbbaa06b5c
Exception objects should be thrown and not the pointer to the exception object. (#322)
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  }
2020-07-16 15:44:34 -07:00
..
core Exception objects should be thrown and not the pointer to the exception object. (#322) 2020-07-16 15:44:34 -07:00
storage suggested changes in API review (#312) 2020-07-16 00:49:55 -07:00