2018-09-05 13:17:07 +08:00
|
|
|
#include "..\e2dimpl.h"
|
2018-05-24 12:24:39 +08:00
|
|
|
|
2018-07-06 12:59:32 +08:00
|
|
|
e2d::SystemException::SystemException() E2D_NOEXCEPT
|
2018-08-15 00:06:03 +08:00
|
|
|
: Exception("Unknown system exception")
|
2018-05-24 12:24:39 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-15 00:06:03 +08:00
|
|
|
e2d::SystemException::SystemException(const char * message) E2D_NOEXCEPT
|
2018-05-24 12:24:39 +08:00
|
|
|
: Exception(message)
|
|
|
|
|
{
|
|
|
|
|
}
|