User`s guide
mwException(const mwException& e)
Purpose Copy constructor for mwException class
C++
Syntax
#include "mclcppclass. h"
try
{
throw mwException("Th is is an error");
}
catch (const mwException& e)
{
throw mwException(e); // Rethrows same error.
}
Arguments e
mwException
to create copy of.
Return
Value
None
Description Use this constructor to create a copy of an mwException.Thecopywill
have the same error message as the original.
C-24