mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 04:07:12 -06:00
14 lines
252 B
C
Executable File
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
|