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