2010-12-27 01:01:25 +00:00
|
|
|
|
/********************************************************
|
|
|
|
|
* ExternalException.h *
|
|
|
|
|
* *
|
|
|
|
|
* XFX ExternalException definition *
|
|
|
|
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|
|
|
|
********************************************************/
|
2011-01-16 00:47:37 +00:00
|
|
|
|
#ifndef _SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_
|
|
|
|
|
#define _SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_
|
2010-12-27 01:01:25 +00:00
|
|
|
|
|
|
|
|
|
#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);
|
2011-01-16 00:47:37 +00:00
|
|
|
|
ExternalException(char* message, Exception* inner);
|
2010-12-27 01:01:25 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-16 00:47:37 +00:00
|
|
|
|
#endif //_SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_
|