7zip/CPP/Common/MyException.h
Igor Pavlov f19f813537 '21.07'
2022-03-18 15:35:13 +05:00

15 lines
227 B
C

// Common/Exception.h
#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H
#include "MyWindows.h"
struct CSystemException
{
HRESULT ErrorCode;
CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
};
#endif