Files
easy7zip/Common/Exception.h
Igor Pavlov 3c510ba80b 4.20
2016-05-28 00:15:41 +01:00

14 lines
252 B
C
Executable File

// Common/Exception.h
#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H
struct CSystemException
{
DWORD ErrorCode;
CSystemException(): ErrorCode(::GetLastError()) {}
CSystemException(DWORD errorCode): ErrorCode(errorCode) {}
};
#endif