ExceptProc not being called in Windows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:10:33Z http://stackoverflow.com/feeds/question/226896 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/226896/exceptproc-not-being-called-in-windows 3 ExceptProc not being called in Windows Chris J 2008-10-22T18:01:06Z 2008-10-22T20:31:16Z <p>I am currently trying to create an Exception handler built into my windows service that, on an unhandled exception, sends a message to another program. I have built the method and gotten the communication working, but it seems that every time my program throws the error, (I have a raise call in the code to force it.) windows catches it instead and the Handler isn't called. Can anyone explain what I am doing wrong?.</p> <p>Simplified Code to explain:</p> <pre><code>procedure unhandled(); begin raise Exception.Create('Unhandled'); end; procedure ExceptionHandler(ExceptObject: TObject; ExceptAddr: Pointer); begin WriteLn('Display: ' + Exception(ExceptObject).Message); //send Message Here end; </code></pre> <p>I call this code to run it:</p> <pre><code>WriteLn('Starting'); ExceptProc := @ExceptionHandler; unhandled(); </code></pre> <p>I would expect the output to be:</p> <blockquote> <p>Starting<br/> Display: Unhandled</p> </blockquote> <p>but all it does is display:</p> <blockquote> <p>Starting</p> </blockquote> <p>Then windows returns a command prompt after about 5 seconds.</p> <p>Why isn't the handler being properly called?</p> <p>P.S. I've been running these tests in a console app for testing.</p> <p>EDIT:</p> <p>Here's some more information:</p> <p>Apparently when you have an assigned ExceptProc, your program shouldn't throw the normal runtime 217 error. I'm guessing this is what windows is catching, From what I can see however, my program is throwing that runtime error, and I can't get an ErrorProc to catch it either.</p> http://stackoverflow.com/questions/226896/exceptproc-not-being-called-in-windows/227079#227079 0 Answer by gabr for ExceptProc not being called in Windows gabr 2008-10-22T18:45:55Z 2008-10-22T19:44:25Z <p>Interesting.</p> <p>Custom exception handler is called if you run the app in Delphi IDE (tried with 2007) but not if you run it from the command prompt.</p> <p>Another interesting thing - I changed the main program code to </p> <pre><code>begin WriteLn('Starting'); try ExceptProc := @ExceptionHandler; Unhandled; finally Readln; end; end. </code></pre> <p>and noticed that exception message is only displayed AFTER I press the Enter key (to get some input to the Readln). Therefore, your handler is not called when exception occurs but when it is handled (in implicit try..except that wraps all your code). Make sense.</p> <p>Must be something with this implicit try..except then, but I lack a non-Delphi debugger on this machine and can't dig further. Maybe somebody else knows the answer ...</p> http://stackoverflow.com/questions/226896/exceptproc-not-being-called-in-windows/227285#227285 5 Answer by Barry Kelly for ExceptProc not being called in Windows Barry Kelly 2008-10-22T19:50:36Z 2008-10-22T19:50:36Z <p>You are missing a call to <a href="http://msdn.microsoft.com/en-us/library/ms680621(VS.85).aspx" rel="nofollow">SetErrorMode()</a>:</p> <pre><code>SetErrorMode(SEM_NOGPFAULTERRORBOX); </code></pre> <p>This is needed to prevent the OS <a href="http://msdn.microsoft.com/en-us/library/ms681401(VS.85).aspx" rel="nofollow">unhandled exception filter</a> from showing a dialog box / displaying the debugger attach dialog box. Here's a complete sample that behaves as expected on my machine:</p> <pre><code>{$apptype console} uses Windows, SysUtils; procedure unhandled(); begin raise Exception.Create('Unhandled'); end; procedure ExceptionHandler(ExceptObject: TObject; ExceptAddr: Pointer); begin Writeln('here'); WriteLn('Display: ' + Exception(ExceptObject).Message); Flush(Output); Halt(1); end; procedure Go; begin unhandled; end; begin ExceptProc := @ExceptionHandler; SetErrorMode(SEM_NOGPFAULTERRORBOX); Go; end. </code></pre> <p>Note that the effect of SetErrorMode() is global across all threads in the running process.</p>