/******************************************************** * ExternalException.h * * * * XFX ExternalException definition * * Copyright © XFX Team. All Rights Reserved * ********************************************************/ #ifndef _SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_ #define _SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_ #include 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(char* message); ExternalException(char* message, Exception* inner); }; } } } #endif //_SYSTEM_RUNTIME_INTEROPSERVICES_ExternalException_