41 |
\brief |
\brief |
42 |
Default constructor for the exception. |
Default constructor for the exception. |
43 |
*/ |
*/ |
|
ESCRIPT_DLL_API |
|
44 |
EsysAssertException() : Parent() { updateMessage();} |
EsysAssertException() : Parent() { updateMessage();} |
45 |
/** |
/** |
46 |
\brief |
\brief |
47 |
Constructor for the exception. |
Constructor for the exception. |
48 |
*/ |
*/ |
|
ESCRIPT_DLL_API |
|
49 |
EsysAssertException(const char *cstr) : Parent(cstr) { updateMessage();} |
EsysAssertException(const char *cstr) : Parent(cstr) { updateMessage();} |
50 |
/** |
/** |
51 |
\brief |
\brief |
52 |
Constructor for the exception. |
Constructor for the exception. |
53 |
*/ |
*/ |
|
ESCRIPT_DLL_API |
|
54 |
EsysAssertException(const std::string &str) : |
EsysAssertException(const std::string &str) : |
55 |
Parent(str) { updateMessage();} |
Parent(str) { updateMessage();} |
56 |
/** |
/** |
57 |
\brief |
\brief |
58 |
Copy Constructor for the exception. |
Copy Constructor for the exception. |
59 |
*/ |
*/ |
|
ESCRIPT_DLL_API |
|
60 |
EsysAssertException(const EsysAssertException &other) : Parent(other) |
EsysAssertException(const EsysAssertException &other) : Parent(other) |
61 |
{ |
{ |
62 |
updateMessage(); |
updateMessage(); |