Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MyException.h « Common « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0ad111589f54b62eb9a4b44e54ead102db04749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

struct CSystemException
{
  HRESULT ErrorCode;
  CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
};

#endif