MyException.h 227 B

1234567891011121314
  1. // Common/Exception.h
  2. #ifndef __COMMON_EXCEPTION_H
  3. #define __COMMON_EXCEPTION_H
  4. #include "MyWindows.h"
  5. struct CSystemException
  6. {
  7. HRESULT ErrorCode;
  8. CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
  9. };
  10. #endif