Exception handling in Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T18:52:12Zhttp://stackoverflow.com/feeds/question/72562http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72562/exception-handling-in-delphi4Exception handling in Delphiajob2008-09-16T14:00:10Z2008-11-03T04:21:55Z
<p>Is there a good way to find out which exceptions a procedure/function can raise in Delphi (including it's called procedures/functions)? </p>
<p>In Java you always have to declare which exceptions that can be thrown, but this is not the case in Delphi, which could lead to unhandled exceptions. </p>
<p>Are there any code analysis tools that detects unhandled exceptions?</p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/72612#726123Answer by Pierre-Jean Coudert for Exception handling in DelphiPierre-Jean Coudert2008-09-16T14:03:33Z2008-09-16T14:03:33Z<p>Take a look at <a href="http://www.madshi.net/madExceptDescription.htm" rel="nofollow">http://www.madshi.net/madExceptDescription.htm</a></p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/72658#726584Answer by PatrickvL for Exception handling in DelphiPatrickvL2008-09-16T14:07:01Z2008-09-16T14:27:45Z<p>Except for a scan on the "raise" keyword, there's no language construct in Delphi that tells the casual reader which exceptions can be expected from a method.</p>
<p>At runtime, one could add a catch-all exception handler in every method, but that's not advisable, as it will slow down the speed of execution. (And it's cumbersome to do too).</p>
<p>Adding an exception-handling block to a method will add a few assembly instructions to it (even when the exception isn't triggered), which forms measureable slow-down when the method is called very often.</p>
<p>There do exist a few libraries that can help you in analyzing runtime exceptions, like <a href="http://madshi.de/madExceptDescription.htm" rel="nofollow">madExcept</a>, <a href="http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/windows/JclDebug.pas?view=markup" rel="nofollow">JclDebug</a>, and <a href="http://www.eurekalog.com/" rel="nofollow">EurekaLog</a>. These tools can log all kinds of details about the exception, it's highly advisable to use one of those!</p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/72670#726701Answer by Ralph Rickenbach for Exception handling in DelphiRalph Rickenbach2008-09-16T14:09:22Z2008-09-16T14:28:06Z<p>For runtime try <a href="http://www.eurekalog.com/" rel="nofollow">Eurekalog</a>. I do not know whether a tool exists for design time. You will have more dificoulties even when you have third party code without source. There is no need in Delphi to catch exceptions, so you do not have to declare them like in Java.</p>
<p>What I wanted to say is that Delphi does not require that an exception is handled. It will just terminate the program. EurekaLog provides means to log handled and unhandled exceptions and provide a wealth of information on the sate of the program when the exception occured, including the line of code it occured at and the call stack at the time.</p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/72709#727094Answer by Lars Fosdal for Exception handling in DelphiLars Fosdal2008-09-16T14:12:32Z2008-09-16T17:25:44Z<p>Any exception not explicitly or generally handled at a specific level will trickle upwards in the call stack. The Delphi RTL (Run Time Library) will generate a set of different exception classes - (mathematical errors, access errors, class specific errors etc). You can chose to handle them specifically or generally in the different try except blocks.</p>
<p>You don't really need to declare any new exception classes unless you need to propagate a specific functional context with the exception.</p>
<p>As previous commenters wrote, you can also add a mother of all exception handlers like MadExcept or EurekaLog to catch the uncaught.</p>
<p>edit: This is a blanket insurance against unhandled exceptions</p>
<pre><code>try
ThisFunctionMayFail;
except
// but it sure won't crash the application
on e:exception
do begin
// something sensible to handle the error
// or perhaps log and/or display the the generic e.description message
end
end;
</code></pre>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/72797#727978Answer by Frederik Slijkerman for Exception handling in DelphiFrederik Slijkerman2008-09-16T14:18:23Z2008-09-16T14:18:23Z<p>My guess is that you're trying to make Delphi behave like Java, which is not a good approach. I'd advise not to worry too much about unhandled exceptions. In the worst case, they'll bubble up to the generic VCL exception handler and cause a Windows message dialog. In a normal application, they won't halt the application.</p>
<p>Well-written code would document the different exceptions that can be raised so you can handle them in a meaningful way. Catch-all handlers aren't recommended since there is really no way to know what to do if you don't know why an exception was raised. I can also highly recommend madExcept.</p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/72839#728395Answer by Graza for Exception handling in DelphiGraza2008-09-16T14:22:27Z2008-09-16T15:47:57Z<p>(Edit: It is now obvious that the question referred <em>only</em> to design-time checking.)</p>
<p>New answer:</p>
<p>I cannot state whether there are any tools to check this for you. Pascal Analyzer, for one, does not.</p>
<p>I <em>can</em> tell you, however, that in most Delphi applications, even if there was a tool to check this for you, you would get no results.</p>
<p><em>Why?</em> Because the main message loop in TApplication.Run() wraps all HandleMessage() calls in an exception handling block, which catches all exception types. Thus you will have implicit/default exception handling around 99.999% of code in most applications. And in most applications, this exception handling will be around 100% of your own code - the 0.001% of code which is not wrapped in exception handling will be the automatically generated code.</p>
<p>If there was a tool available to check this for you, you would need to rewrite Application.run() such that it does not include exception handling.</p>
<p>(Previous answer:
<em>The Application.OnException event handler can be assigned to catch all exceptions that aren't handled by other exception handlers. Whilst this is run-time, and thus perhaps not exactly what you are after (it sounds like you want to identify them at design time), it does allow you to trap any exception not handled elsewhere. In conjunction with tools such as the JCLDebug stuff in the <a href="http://sourceforge.net/projects/jcl/" rel="nofollow">Jedi Code Library</a>, you could log a stack trace to find out where & why an exception occurred, which would allow for further investigation and adding specific exception handling or prevention around the guilty code...</em>)</p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/73176#731763Answer by skamradt for Exception handling in Delphiskamradt2008-09-16T14:51:28Z2008-09-16T14:51:28Z<p>I will second (or is it third) <a href="http://www.madshi.net/" rel="nofollow">MadExcept</a>. I have been using it successfully in several commercial applications without any problems. The nice thing about MadExcept is that it will generate a report for you with a full stack trace that will generally point you in the right direction as to what went wrong, and can even include a screenshot, as well has have this automatically emailed to you from the clients computer with a simple mouse click.</p>
<p>However, you don't want to use this for ALL exceptions, just to catch the ones you miss. For instance, if you open a database and the login fails, it would be better for you to catch and handle this one yourself rather than give the user the MadExcept default error in your application occured message. </p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/73954#739542Answer by Jim McKeeth for Exception handling in DelphiJim McKeeth2008-09-16T16:02:10Z2008-11-03T04:21:55Z<p>The short answers is there is no tool that does what you say, and even a scan for the <strong>raise</strong> keyword wouldn't get you there. <em>EAccessViolation</em> or <em>EOutOfMemory</em> are just two of a number of exceptions that could get raised just about anywhere. </p>
<p>One fundamental thing about Delphi is the exceptions are hierarchical: All defined language exceptions descend from <em>Exception</em>, although it is worth noting that it is actually possible to raise any <em>TObject</em> descendant.</p>
<p>If you want to <strong>catch</strong> every exception that is raised in a particular procedure, just wrap it in a <strong>try / except</strong> block, but as was mentioned <strong><em>this is not recommended</em></strong>.</p>
<pre><code>// Other code . . .
try
SomeProcedure()
except // BAD IDEA!
ShowMessage('I caught them all!');
end;
</code></pre>
<p>That will catch everything, even instances of a raised <em>TObject</em>. Although I would argue that this is rarely the best course of action. Usually you want to use a <strong>try / finally</strong> block and then allow your global exception handler (or one final <strong>try / except</strong> block) to actually handle the exceptions.</p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/104594#1045940Answer by Frank Shearar for Exception handling in DelphiFrank Shearar2008-09-19T19:04:07Z2008-09-19T19:04:07Z<p>As Jim McKeeth points out, you can't get a definitive answer, but it seems to me that one could <em>partially</em> answer the question by some static analysis: given a particular function/procedure, construct a call graph. Check each of the functions in that call graph for a raise statement. That would tell you, for instance, that TIdTcpClient.ReadString can raise an EIdNotConnected (among others).</p>
<p>A clever analyser might also note that some code uses the / operator and include EDivByZero as a possibility, or that some procedure accesses an array and include ERangeError.</p>
<p>That answer's a bit tighter than simply grepping for "raise".</p>