mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
Now, the only thing keeping XFX from a full compile is my stupid attempt at Asynchronous IO. Will look at that, but most likely, I will comment it out and just get a new Demo out before New Year.
33 lines
871 B
C++
33 lines
871 B
C++
/********************************************************
|
|
* ExternalException.h *
|
|
* *
|
|
* XFX ExternalException definition *
|
|
* Copyright © XFX Team. All Rights Reserved *
|
|
********************************************************/
|
|
#ifndef _SYSTEM_RUNTIME_INTEROPSERVICES_
|
|
#define _SYSTEM_RUNTIME_INTEROPSERVICES_
|
|
|
|
#include <System/Exception.h>
|
|
|
|
namespace System
|
|
{
|
|
namespace Runtime
|
|
{
|
|
namespace InteropServices
|
|
{
|
|
/// <summary>
|
|
/// The base exception type for all COM interop exceptions and structured exception handling (SEH) exceptions.
|
|
/// </summary>
|
|
class ExternalException : public SystemException
|
|
{
|
|
public:
|
|
ExternalException();
|
|
ExternalException(char* message);
|
|
ExternalException(char* message, Exception inner);
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif //_SYSTEM_RUNTIME_INTEROPSERVICES_
|