2013-10-03 14:40:24 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* ExternalException.h *
|
|
|
|
* *
|
|
|
|
* System::Runtime::InteropServices::ExternalException definition file. *
|
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
|
|
|
*****************************************************************************/
|
2013-05-05 18:18:41 +02:00
|
|
|
#ifndef _SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_
|
|
|
|
#define _SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_
|
|
|
|
|
|
|
|
#include <System/Exception.h>
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
|
|
|
namespace Runtime
|
|
|
|
{
|
|
|
|
namespace InteropServices
|
|
|
|
{
|
2013-10-03 14:40:24 +02:00
|
|
|
/**
|
|
|
|
* The base exception type for all COM interop exceptions and structured exception handling (SEH) exceptions.
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
class ExternalException : public SystemException
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExternalException();
|
2013-10-03 14:40:24 +02:00
|
|
|
ExternalException(const String& message);
|
|
|
|
ExternalException(const String& message, Exception * const inner);
|
2013-05-05 18:18:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //_SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_
|