1370b324cSopenharmony_ci// Common/Exception.h 2370b324cSopenharmony_ci 3370b324cSopenharmony_ci#ifndef ZIP7_INC_COMMON_EXCEPTION_H 4370b324cSopenharmony_ci#define ZIP7_INC_COMMON_EXCEPTION_H 5370b324cSopenharmony_ci 6370b324cSopenharmony_ci#include "MyWindows.h" 7370b324cSopenharmony_ci 8370b324cSopenharmony_cistruct CSystemException 9370b324cSopenharmony_ci{ 10370b324cSopenharmony_ci HRESULT ErrorCode; 11370b324cSopenharmony_ci CSystemException(HRESULT errorCode): ErrorCode(errorCode) {} 12370b324cSopenharmony_ci}; 13370b324cSopenharmony_ci 14370b324cSopenharmony_ci#endif 15