User`s guide
mwException& operator=(const std::exception& e)
Purpose Assignment operator for mwException class
C++
Syntax
#include "mclcppclass. h"
try
{
...
}
catch (const std::exception& e)
{
mwException e2 = e;
throw e2;
}
Arguments e
std::exception
to initialize copy with.
Return
Value
A reference to the invoking mwException .
Description Use this operator to create a copy of an std::exception.Thecopywill
have the same error message as the original.
C-28