1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Tom Lint 95bf1d7ebc Added missing TypeInfos to XFX::Input namespace
Updated function incorrect signatures in libXFX
2013-10-03 14:40:24 +02:00

33 lines
990 B
C++

/*****************************************************************************
* ExternalException.h *
* *
* System::Runtime::InteropServices::ExternalException definition file. *
* Copyright (c) XFX Team. All Rights Reserved *
*****************************************************************************/
#ifndef _SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_
#define _SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_
#include <System/Exception.h>
namespace System
{
namespace Runtime
{
namespace InteropServices
{
/**
* The base exception type for all COM interop exceptions and structured exception handling (SEH) exceptions.
*/
class ExternalException : public SystemException
{
public:
ExternalException();
ExternalException(const String& message);
ExternalException(const String& message, Exception * const inner);
};
}
}
}
#endif //_SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_