Microsoft-specific exception handling mechanisms: Difference between revisions

Content deleted Content added
Line 8:
=== Usage ===
{{seealso|Exception handling syntax}}
MicrosotMicrosoft supports SEH as a programming technique at compiler level only. MS Visual C++ compiler features 3 non-standard keywords: <code>__try</code>, <code>__except</code> and <code>__finally</code> — for this purpose. Some other exception handling aspects are backed up by a number of [[Win32 API]] functions<ref>{{cite web |url=http://msdn.microsoft.com/en-us/library/ms680659%28VS.85%29.aspx |title=Structured Exception Handling Functions |author= |date=11/12/2009 |work=MSDN Library |author=Microsoft Corp. |accessdate=2009-11-17 }}</ref> including <code>RaiseException</code> to raise SEH exceptions manually.
 
=== Implementation ===