active questions tagged exceptions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:49:47Z http://stackoverflow.com/feeds/tag/exceptions http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1928008/what-exception-should-be-thrown-by-a-net-program-if-it-encounters-invalid-data 2 What exception should be thrown by a .NET program if it encounters invalid data? Vilx- 2009-12-18T12:43:11Z 2009-12-18T15:30:00Z <p>Consider the following example: as part of configuration for my program the user supplies an XML file which should in essence describe an acyclic graph, but my program finds a graph when loading it. This is a critical error, the program cannot continue. What exception should be thrown?</p> <p>Other examples include trying to load a file in some specific format (say JPEG), but encountering an error along the way; or receiving some data over the network from another 3rd party program which <em>should</em> be correct, but isn't.</p> <p>In essence - you're parsing some kind of data stream and find an error in it which shouldn't be there and which means that the program cannot continue as expected. What is the right type of exception to throw here?</p> <p>(Note: This shouldn't be an Argument<i>XXX</i>Exception because this data isn't passed as a parameter to a method).</p> http://stackoverflow.com/questions/1927838/passing-business-validation-error-from-service-layer-to-presentation-layer 0 Passing Business Validation Error from Service layer to presentation layer Marshaler 2009-12-18T12:05:26Z 2009-12-18T12:42:53Z <p>Hello All,</p> <p>We are using MVP pattern in our Presentation Layer(PL) and a WCF based service layer(SL). PL calls operation contracts on the SL and internally it does some business validations. If the validation passes, we return an obect (exposed as a data contract) to the PL. </p> <p>But if the validation fails, what is the best practice we notify the PL. </p> <pre><code>Entity2 Operation1(Entity1 e) { //Do some business validation and if passes pass on the updated object back to PL } </code></pre> <p>One way is we create a generic Response Class which is common for all operation contracts. It'll look something like this. </p> <pre><code>public class Response { public ExceptionType exceptionType; public ExceptionInfo exceptionInfo; Collection&lt;Entity&gt; entityCollection; } </code></pre> <p>ExceptionType: This is an enum which tells if the businessValidation failed or SecurityValidation or some unknown exception occured.</p> <p>ExceptionInfo: This is an enum which tells specific details of the validation/exception occured like errorCode, etc. </p> <p>Collection: The service layer can return a single entity or a collection of entity. We use this property to return the entity or entities as per requirement. It can be null also in case there was an validation failure or the method doesnt expect any return entity from the service layer. </p> <p>Is this a good approach to pass on the validation failures to PL. </p> <p>On drawback of this I see is - the PL needs to handle all the cases defined in exceptionInfo, probably use a switch case and do neccessary things. </p> <p>Other way to do this is throw exceptions to the PL if any business validation or security validation fails. I am not much keen on this approach because i dont want to use exception to handle my business logic. </p> <p>Any more ideas to handle this scenarios?</p> http://stackoverflow.com/questions/1925635/handling-an-exception-in-another-thread 1 Handling an exception in another thread Bryan Ross 2009-12-18T00:57:37Z 2009-12-18T01:05:45Z <p>What is the "correct" way of detecting and handling an exception in another thread in Python, when the code in that other thread is not under your control?</p> <p>For instance, say you set a function that requires 2 parameters as the target of the <code>threading.Thread</code> object, but at runtime attempt to pass it 3. The <code>Thread</code> module will throw an exception on another thread before you can even attempt to catch it.</p> <p>Sample code:</p> <pre><code>def foo(p1,p2): p1.do_something() p2.do_something() thread = threading.Thread(target=foo,args=(a,b,c)) thread.start() </code></pre> <p>Throws an exception on a different thread. How would you detect and handle that?</p> http://stackoverflow.com/questions/1909967/what-does-msvc-6-throw-when-an-integer-divide-by-zero-occurs 0 What does msvc 6 throw when an integer divide by zero occurs? EvilTeach 2009-12-15T19:58:28Z 2009-12-15T20:18:15Z <p>I have been doing a bit of experimenting, and have discovered that an exception is being thrown, when an integer divide by zero occurs. </p> <pre><code>#include &lt;iostream&gt; #include &lt;stdexcept&gt; using namespace std; int main ( void ) { try { int x = 3; int y = 0; int z = x / y; cout &lt;&lt; "Didn't throw or signal" &lt;&lt; endl; } catch (std::exception &amp;e) { cout &lt;&lt; "Caught exception " &lt;&lt; e.what() &lt;&lt; endl; } return 0; } </code></pre> <p>Clearly it is not throwing a std::exception. What else might it be throwing?</p> http://stackoverflow.com/questions/1898334/questions-about-threads-their-stacks-and-exception-handling 0 Questions about threads, their stacks, and Exception handling dmindreader 2009-12-14T00:18:24Z 2009-12-14T02:46:58Z <p>Given this code:</p> <pre><code>public class TwoThreads { static Thread laurel, hardy; public static void main(String[] args) { laurel = new Thread() { public void run() { System.out.println("A"); try { hardy.sleep(1000); } catch (Exception e) { System.out.println("B"); } System.out.println("C"); } }; hardy = new Thread() { public void run() { System.out.println("D"); try { laurel.wait(); } catch (Exception e) { System.out.println("E"); } System.out.println("F"); } }; laurel.start(); hardy.start(); } } </code></pre> <p>The output includes:</p> <pre><code>A C D E and F </code></pre> <p>I'm puzzled about why F is included, given that an <code>IllegalMonitorStateException</code> is thrown when wait() is called outside of <code>synchronized</code> code. Why is the print statement of F reached? I believe that the thread stack blows then, but then the program passes to its main stack, is this correct?</p> http://stackoverflow.com/questions/1897940/in-what-ways-do-c-exceptions-slow-down-code-when-there-are-no-exceptions-thown 4 In what ways do C++ exceptions slow down code when there are no exceptions thown? meomaxy 2009-12-13T22:03:54Z 2009-12-13T22:56:51Z <p>I have read that there is some overhead to using C++ exceptions for exception handling as opposed to, say, checking return values. I'm only talking about overhead that is incurred when no exception is thrown. I'm also assuming that you would need to implement the code that actually checks the return value and does the appropriate thing, whatever would be the equivalent to what the catch block would have done. And, it's also not fair to compare code that throws exception objects with 45 state variables inside to code that returns a negative integer for every error.</p> <p>I'm not trying to build a case for or against C++ exceptions solely based on which one might execute faster. I heard someone make the case recently that code using exceptions ought to run just as fast as code based on return codes, once you take into account all the extra bookkeeping code that would be needed to check the return values and handle the errors. What am I missing?</p> http://stackoverflow.com/questions/1891572/python-exception-propagation 0 Python Exception Propagation Nate 2009-12-11T23:37:42Z 2009-12-12T00:05:08Z <p>I'm building a tool where as exceptions propagate upwards, new data about the context of the exception gets added to the exception. The issue is, by the time the exception gets to the top level, all of the extra context data is there, but only the very latest stack trace is shown. Is there an easy way to have an exception show the original stack trace in which it was thrown instead of the last stack trace, or should I do something like grab the original stack trace the first time that the exception propagates?</p> <p>For example, the following code:</p> <pre><code>def a(): return UNBOUND def b(): try: a() except Exception as e: raise e b() </code></pre> <p>yields the following exception:</p> <pre><code>Traceback (most recent call last): File "test.py", line 8, in &lt;module&gt; b() File "test.py", line 7, in b raise e NameError: global name 'UNBOUND' is not defined </code></pre> <p>where, ideally, I'd like to somehow show the user this:</p> <pre><code>Traceback (most recent call last): File "test.py", line 8, in &lt;module&gt; File "test.py", line 2, in a return UNBOUND NameError: global name 'UNBOUND' is not defined </code></pre> <p>As that points the user to the line that the error originally occurred on.</p> http://stackoverflow.com/questions/1591319/python-how-can-i-know-which-exceptions-might-be-thrown-from-a-method-call 7 Python: How can I know which exceptions might be thrown from a method call bugspy.net 2009-10-19T21:43:36Z 2009-12-12T00:02:31Z <p>Is there a way knowing (at coding time) which exceptions to expect when executing python code? I end up catching the base Exception class 90% of the time since I don't know which exception type might be thrown(and don't tell me to read the documentation. many times an exception can be propagated from the deep. and many times the documentation is not updated or correct). Is there some kind of tool to check this ? (like by reading the python code and libs)?</p> http://stackoverflow.com/questions/1877686/implementing-python-exceptions 1 Implementing python exceptions devoured elysium 2009-12-09T23:26:53Z 2009-12-10T00:15:12Z <p>I'm having some problems implementing an exception system in my program. I found somewhere the following piece of code that I am trying to use for my program:</p> <pre><code>class InvalidProgramStateException(Exception): def __init__(self, expr, msg): self.expr = expr self.msg = msg </code></pre> <p>I think msg must be a string message to be shown, but how do I fill the "expr" when I want to raise this exception? Do I have to write it by hand?</p> <pre><code>raise InvalidProgramStateException(what_here?, "there was an error") </code></pre> http://stackoverflow.com/questions/1877750/how-to-catch-exceptions-in-wpf-when-calling-a-wcf-sevive 0 How to Catch Exceptions in WPF when Calling a WCF Sevive hui 2009-12-09T23:41:13Z 2009-12-10T00:10:52Z <p>How to Catch Exceptions in WPF when Calling a WCF Sevive</p> http://stackoverflow.com/questions/1777894/java-exceptions-what-to-catch-and-what-not-to 5 Java Exceptions, What to catch and what not to? Kevin Boyd 2009-11-22T05:18:23Z 2009-12-09T05:07:00Z <p>I keep getting the dreaded java.something.someException errors while running my java app. and I don't seem to be getting the hang of what exceptions to handle and what not to?<br> When I read the api docs most of the functions throw exceptions like if I use I/O or use an Array... etc.</p> <p>How to make a decision about what exceptions to catch and what not to and based on what parameters? </p> <p>I am talking about checked exceptions here.</p> http://stackoverflow.com/questions/1855773/avoid-slicing-of-exception-types-c 1 Avoid slicing of exception types (C++) shojtsy 2009-12-06T16:08:38Z 2009-12-07T02:20:39Z <p>I am designing an exception hierarchy in C++ for my library. The "hierarchy" is 4 classes derived from std::runtime_error. I would like to avoid the <a href="http://stackoverflow.com/questions/274626/what-is-the-slicing-problem-in-c">slicing problem</a> for the exception classes so made the copy constructors protected. But apparently gcc requires to call the copy constructor when throwing instances of them, so complains about the protected copy constructors. Visual C++ 8.0 compiles the same code fine. Are there any portable way to defuse the slicing problem for exception classes? Does the standard say anything about whether an implementation could/should require copy constructor of a class which is to be thrown?</p> <h3>Edit: Answering my own questions</h3> <p>Thanks for the answers. The two portable ways I have found to stop clients of my library from catching exceptions incorrectly by value are</p> <ol> <li>Throw exceptions from inside <a href="http://www.parashift.com/c++-faq-lite/exceptions.html#faq-17.10" rel="nofollow">virtual raise</a> methods of the exception classes, and make copy constructors protected. (Thanks D.Shawley)</li> <li>Throw derived exceptions from the library and publish exception base classes for clients to catch. The base classes could have protected copy constructors, which only allows the good way of catching them. (mentioned <a href="http://stackoverflow.com/questions/1095225/exception-slicing-is-this-due-to-generated-copy-constructor">here</a> for a simmilar question)</li> </ol> <p>The C++ standard does state that copy constructor needs to be accessible at the point of throw. Visual C++ 8.0 in my configuration violated this part of the standard by not enforcing the presence of the copy constructor. In section 15.1.3:</p> <blockquote> <p>A throw-expression initializes a temporary object, the type of which is determined by removing any top-level cv-qualifiers from the static type of the operand of throw and adjusting the type from “array of T” or “function returning T” to “pointer to T” or “pointer to function returning T”, respectively.</p> <p>If the use of the temporary object can be eliminated without changing the meaning of the program except for the execution of constructors and destructors associated with the use of the temporary object (12.2), then the exception in the handler can be initialized directly with the argument of the throw expression. When the thrown object is a class object, and the copy constructor used to initialize the temporary copy is not accessible, the program is ill-formed (even when the temporary object could otherwise be eliminated)</p> </blockquote> http://stackoverflow.com/questions/1849478/exceptions-and-linq-to-entities 0 Exceptions and Linq to Entities Irv 2009-12-04T20:31:14Z 2009-12-04T21:49:44Z <p>I have a tough question to ask so please bier with me.</p> <p>In this code below, this works because the programmer was interested in projecting only the specific errors caused by the physical data-layer to the eventlog. The rest are pushed farther up the stack. This is specifically because he is able to catch OdbcException(s).</p> <p>I am implementing my own MembershipProvider. I am however, using Linq to Entities but I would like to send only the low-level/physical-level exceptions to the eventlog. Is there an exception that I can catch when using Linq to Entities that will allow me to catch at that level?</p> <p>As you can see below, even the exceptions that are thrown within the try block will not get caught so will not be sent to the eventlog.</p> <p>How can this be done with Linq to Entities?</p> <p>Code:</p> <pre><code>public override string ResetPassword(string username, string answer) { if (!EnablePasswordReset) { throw new NotSupportedException("Password reset is not enabled."); } if (answer == null &amp;&amp; RequiresQuestionAndAnswer) { UpdateFailureCount(username, "passwordAnswer"); throw new ProviderException("Password answer required for password reset."); } string newPassword = System.Web.Security.Membership.GeneratePassword(newPasswordLength, MinRequiredNonAlphanumericCharacters); ValidatePasswordEventArgs args = new ValidatePasswordEventArgs(username, newPassword, true); OnValidatingPassword(args); if (args.Cancel) if (args.FailureInformation != null) throw args.FailureInformation; else throw new MembershipPasswordException("Reset password canceled due to password validation failure."); OdbcConnection conn = new OdbcConnection(connectionString); OdbcCommand cmd = new OdbcCommand("SELECT PasswordAnswer, IsLockedOut FROM Users " + " WHERE Username = ? AND ApplicationName = ?", conn); cmd.Parameters.Add("@Username", OdbcType.VarChar, 255).Value = username; cmd.Parameters.Add("@ApplicationName", OdbcType.VarChar, 255).Value = pApplicationName; int rowsAffected = 0; string passwordAnswer = ""; OdbcDataReader reader = null; try { conn.Open(); reader = cmd.ExecuteReader(CommandBehavior.SingleRow); if (reader.HasRows) { reader.Read(); if (reader.GetBoolean(1)) throw new MembershipPasswordException("The supplied user is locked out."); passwordAnswer = reader.GetString(0); } else { throw new MembershipPasswordException("The supplied user name is not found."); } if (RequiresQuestionAndAnswer &amp;&amp; !CheckPassword(answer, passwordAnswer)) { UpdateFailureCount(username, "passwordAnswer"); throw new MembershipPasswordException("Incorrect password answer."); } OdbcCommand updateCmd = new OdbcCommand("UPDATE Users " + " SET Password = ?, LastPasswordChangedDate = ?" + " WHERE Username = ? AND ApplicationName = ? AND IsLockedOut = False", conn); updateCmd.Parameters.Add("@Password", OdbcType.VarChar, 255).Value = EncodePassword(newPassword); updateCmd.Parameters.Add("@LastPasswordChangedDate", OdbcType.DateTime).Value = DateTime.Now; updateCmd.Parameters.Add("@Username", OdbcType.VarChar, 255).Value = username; updateCmd.Parameters.Add("@ApplicationName", OdbcType.VarChar, 255).Value = pApplicationName; rowsAffected = updateCmd.ExecuteNonQuery(); } catch (OdbcException e) { if (WriteExceptionsToEventLog) { WriteToEventLog(e, "ResetPassword"); throw new ProviderException(exceptionMessage); } else { throw e; } } finally { if (reader != null) { reader.Close(); } conn.Close(); } if (rowsAffected &gt; 0) { return newPassword; } else { throw new MembershipPasswordException("User not found, or user is locked out. Password not Reset."); } } </code></pre> http://stackoverflow.com/questions/1843170/c-api-development-exception-handling 2 C# API Development Exception handling OTisler 2009-12-03T21:50:02Z 2009-12-04T03:42:42Z <p>Is there a best-practice or industry standard for throwing exceptions from a toolkit API?</p> <p>Should the user facing methods catch and wrap up <code>Exception</code> in some sort of <code>CustomException</code> so that users only have to worry about <code>CustomException</code>s coming out of the API?</p> <p>Or is the convention to just let those bubble up?</p> <p>We're concerned with being able to document all possible exceptions our API methods might throw. (e.g. if our API method calls, <code>Stream.Write()</code> which throws 4 or 5 exceptions we'd have to document all of those plus other exceptions other called methods might throw)</p> <p>We were thinking of doing something like this</p> <pre><code>public void customerFacingApiMethod(){ try { //api functionality goes here } catch (Exception e) { throw new CustomException(e); } } </code></pre> http://stackoverflow.com/questions/1833884/what-lines-this-code-might-throw-a-index-was-outside-the-bounds-of-the-array 2 What line(s) this code might throw a "Index was outside the bounds of the array" exception? cchampion 2009-12-02T16:03:49Z 2009-12-02T22:18:54Z <p>A little background on this error: The customer getting this error message in their log file and support hasn't been able to reproduce it yet. So I'm reviewing the code trying to determine what may be happening. I have narrowed it down to this section of the code by reviewing their log file. I didn't write this code, but it's purpose is to ftp a zip file to a remote server. So the question is....</p> <p>What line(s) this code might throw a "Index was outside the bounds of the array" exception?</p> <pre><code>FtpLib.FTPFactory ff = new FtpLib.FTPFactory(); try { ff.setRemoteHost(job.FTPHost); ff.setRemoteUser(job.FTPUser); ff.setRemotePass(job.FTPPW); ff.login(); // Execute misc. extra commands foreach (string command in job.Commands) { if (log.IsDebugEnabled) log.Debug("JOB: " + job.ID + " -- FTP Command \"" + command + "\" sent..."); ff.sendCommand(command); if (log.IsDebugEnabled) log.Debug("JOB: " + job.ID + " -- Response: " + ff.getLastMessage()); } try { ff.mkdir(job.FTPRemoteDir); } catch (IOException) { } ff.chdir(job.FTPRemoteDir); ff.setBinaryMode(true); if (log.IsInfoEnabled) log.Info("JOB: " + job.ID + " -- FTP UPLOAD: \"" + zipfile.Name + "\" to \"" + job.FTPHost + "/" + job.FTPRemoteDir + "/\""); ff.upload(zipfile.FullName); if (log.IsInfoEnabled) log.Info("JOB: " + job.ID + " -- Completed."); bFTPSuccess = true; break; </code></pre> <p>}</p> <p>Thanks in advance!</p> <p>UPDATE: I think we all pretty much agree that the issue is going to be in the FTPLib, I'll see if we have the source for it. I found out this is an obscure bug the customer can't even reproduce consistently, so this will be a fun one pin point. I have added additional debug logging using Exception.StackTrace and Exception.ToString functions. I'll update again once the issue is solved and try to award the correct person with the correct answer, although everyone has made good suggestions. Thanks for the help!</p> http://stackoverflow.com/questions/1835211/the-right-time-to-handle-all-exceptions 1 The right time to handle all exceptions MarceloRamires 2009-12-02T19:22:45Z 2009-12-02T19:57:05Z <p>I've done a few projects so far, and i've noticed that every single one i've written entirely without any exception handling, then at the end i do a lot of tests and handle them all. </p> <p>is it right? i get thousands of exceptions while mid-programming testing (which i fix right away) that if i've handled it i wouldn't see exactly where it is(when not using breakpoints.. but it doesn't seem as practical) </p> <p>What about you? when do you guys take care of exceptions ? i'm here to learn =)</p> <p>(obs: it's a generic question, and i'm new to S.O.. I don't know if i have to mark it differently in any way, please edit if needed.)</p> http://stackoverflow.com/questions/1834723/exceptions-across-module-boundaries-in-c-cli 0 exceptions across module boundaries in C++/CLI Jet 2009-12-02T18:03:41Z 2009-12-02T18:51:33Z <p>Item 62 of Sutter and Alexandrescu's book "C++ Coding Standards" is "Don’t allow exceptions to propagate across module boundaries." Should we follow the same rule in C++/CLI?</p> http://stackoverflow.com/questions/1834405/do-potential-exceptions-carry-an-overhead 1 Do potential exceptions carry an overhead? cvb 2009-12-02T17:14:24Z 2009-12-02T18:30:16Z <p>Will a piece of code that potentially throws an exception have a degraded performance compared a similar code that doesn't, when the exception isn't thrown?</p> http://stackoverflow.com/questions/1819653/can-i-make-aasm-run-a-specific-method-on-event-fail 0 Can I make AASM run a specific method on event fail? Laurie Young 2009-11-30T12:52:19Z 2009-11-30T12:52:19Z <p>Is there a nice way to tell AASM that if an exception is raised while processing any assm_event I want that error to be caught by a specific block of code?</p> <p>eg currently I do something like </p> <pre><code>assm_state :state_1 assm_state :state_2, :before_enter =&gt; :validate_something assm_state :failed assm_event :something_risky do transition :from =&gt; :state_1, :to =&gt; :state_2 end assm_event :fail do transition :from =&gt; [:state_1, :state_2], :to =&gt; :failed end def validate_something begin something_that_might_raise_error rescue self.record_error self.fail end end </code></pre> <p>and what I would prefer to do is something like</p> <pre><code>assm_state :state_1 assm_state :state_2, :before_enter =&gt; :validate_something assm_state :failed assm_event :something_risky, :on_exception =&gt; :log_failure do transition :from =&gt; :state_1, :to =&gt; :state_2 end assm_event :fail do transition :from =&gt; [:state_1, :state_2], :to =&gt; :failed end def validate_something something_that_might_raise_exception end def log_failure self.record_error self.fail end </code></pre> <p>and have <code>log_failure</code> be called if <code>something_that_might_raise_exception</code> does raise an exception. Ideally I want to avoid changing AASM so I am safe if I need to upgrade it in the future</p> http://stackoverflow.com/questions/1410172/testing-for-multiple-exceptions-with-junit-4-annotations 1 Testing for multiple exceptions with JUnit 4 annotations phantom-99w 2009-09-11T10:30:07Z 2009-11-27T20:45:23Z <p>Is it possible to test for multiple exceptions in a single JUnit unit test? I know for a single exception one can use, for example</p> <pre><code> @Test(expected=IllegalStateException.class) </code></pre> <p>Now, if I want to test for another exception (say, NullPointerException), can this be done in the same annotation, a different annotation or do I need to write another unit test completely?</p> http://stackoverflow.com/questions/1809567/php-simpletest-handling-exceptions 0 PHP SimpleTest - Handling Exceptions Dan 2009-11-27T16:12:02Z 2009-11-27T17:22:23Z <p>Hi, I have a few simple classes used in a forum application. I'm trying to run some tests using SimpleTest, but I'm having problems with exceptions.</p> <p>I have a section of code which generates a custom exception. Is there a way to catch this exception in my test and assert that it is what I expect?</p> <p>This is the method within my class:</p> <pre><code>public function save() { $this-&gt;errors = $this-&gt;validate(); try { if (empty($this-&gt;errors)) { Database::commitOrRollback($this-&gt;prepareInsert()); } else { throw new EntityException($this-&gt;errors); } } catch (Exception $e) { echo 'Caught exception: ', $e-&gt;getMessage(), "\n"; } } </code></pre> <p>Any advice appreciated.<br> Thanks.</p> http://stackoverflow.com/questions/1805345/how-do-you-catch-a-thrown-soap-exception-from-a-web-service 3 How do you catch a thrown soap exception from a web service? Louise 2009-11-26T19:36:33Z 2009-11-26T21:30:09Z <p>I throw a few soap exceptions in my web service successfully. I would like to catch the exceptions and access the string and ClientFaultCode that are called with the exception. Here is an example of one of my exceptions in the web service:</p> <pre><code>throw new SoapException("You lose the game.", SoapException.ClientFaultCode); </code></pre> <p>In my client, I try to run the method from the web service that may throw an exception, and I catch it. The problem is that my catch blocks don't do anything. See this example:</p> <pre><code>try { service.StartGame(); } catch { // missing code goes here } </code></pre> <p>How can I access the string and ClientFaultCode that are called with the thrown exception?</p> http://stackoverflow.com/questions/1790739/how-to-get-rid-of-exceptions-thrown-by-the-net-framework 1 How to get rid of exceptions thrown by the .NET framework Hans Løken 2009-11-24T15:18:34Z 2009-11-25T11:48:29Z <p>In a recent project I'm using a lot of databinding and xml-serialization. I'm using C#/VS2008 and have downloaded symbol information for the .NET framework to help me when debugging. </p> <p>The app I'm working on has a global "catch all" exception handler to present a more presentable messages to users if there happens to be any uncaught exceptions being thrown. My problem is when I turn on Exceptions->Thrown to be able to debug exceptions before they are caught by the "catch all". It seems to me that the framework throws a lot of exceptions that are not immediately caught (for example in ReflectPropertyDescriptor) so that the exception I'm actually trying to debug gets lost in the noise. Is there any way to get rid of exceptions caused by the framework but keep the ones from my own code?</p> <p>Update: after more research and actually trying to get rid of the exceptions that get thrown by the framework (many which turn out to be known issues in the framework, example: <a href="http://stackoverflow.com/questions/1127431/xmlserializer-giving-filenotfoundexception-at-constructor">http://stackoverflow.com/questions/1127431/xmlserializer-giving-filenotfoundexception-at-constructor</a>) I finally found a solution that works for me, which is turning on "Just my code" in Tools >> Options >> Debugging >> General >> Enable Just My Code in VS2008.</p> http://stackoverflow.com/questions/1782087/asp-net-exception-handling 0 ASP.NET Exception Handling ForeverDebugging 2009-11-23T09:41:40Z 2009-11-23T09:44:51Z <p>I'm working on a traditional ASP.NET application where I'm making a WCF call to perform some operations.</p> <p>The question is, should I put a try catch around the WCF call and display the error details at the top of the current page, or let the error redirect the user to a custom error page, or the dreaded yellow screen of death?</p> http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively 26 Why should exceptions be used conservatively? Catskul 2009-11-16T18:46:26Z 2009-11-22T17:11:57Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1736146/why-is-exception-handling-bad">Why is exception handling bad?</a> </p> </blockquote> <p>I often see/hear people say that exceptions should only be used rarely, but never explain why. While that may be true, rationale is normally a glib: <em>"it's called an exception for a reason"</em> which, to me, seems to be the sort of explanation that should never be accepted by a respectable programmer/engineer. </p> <p>There is a range of problems that an exception can be used to solve. <strong>Why is it unwise to use them for control flow? What is the philosophy behind being exceptionally conservative with how they are used? Semantics? Performance? Complexity? Aesthetics? Convention?</strong></p> <p>I've seen some analysis on performance before, but at a level that would be relevant to some systems and irrelevant to others.</p> <p>Again, I don't necessarily disagree that they should be saved for special circumstances, but I'm wondering what the consensus rationale is (if such a thing exists).</p> http://stackoverflow.com/questions/1771216/is-there-really-a-performance-hit-when-catching-exceptions 3 Is there really a performance hit when catching exceptions acidzombie24 2009-11-20T15:28:38Z 2009-11-21T20:20:46Z <p>edit: <strong>Someone had added the C# keyword. I am NOT talking about C#</strong>. just exception in general. Specific in compiled languages like C++ and D, C# was also in my mind. </p> <p>I asked a question about <a href="http://stackoverflow.com/questions/1770359/exceptions-as-a-control-mechanism/">exceptions</a> and i am getting VERY annoyed at people saying throwing is slow. I asked in the past <a href="http://stackoverflow.com/questions/307610/how-do-exceptions-work-behind-the-scenes-in-c">How exceptions work behind the scenes</a> and i know in the normal code path there isnt any extra instructions (read the accepted answer) but i am not entirely convince throwing is more expensive then checking return values. Consider the following</p> <pre><code>{ int ret = func(); if (ret == 1) return; if (ret == 2) return; doSomething(); } </code></pre> <p>vs</p> <pre><code>{ try{ func(); doSomething(); } catch (SpecificException1 e) { } catch (SpecificException2 e) { } } </code></pre> <p>As far as i know there isnt a difference except the if's are moved out of the normal code path into an exception path and an extra jump or two to get to the exception code path. An extra jump or two doesnt sound much when it reduces a few ifs in your main and more often run code path. So are exceptions actually slow? or is this a myth or an old issue with old compilers?</p> http://stackoverflow.com/questions/1768826/which-is-preferable-and-less-expensive-class-matching-vs-exception 0 Which is preferable and less expensive: class matching vs exception? h2g2java 2009-11-20T07:04:49Z 2009-11-21T14:44:20Z <p>Which is less expensive and preferable: put1 or put2?</p> <pre><code>Map&lt;String, Animal&gt; map = new Map&lt;String, Animal&gt;(); void put1(){ for (.....) if (Animal.class.isAssignableFrom(item[i].getClass()) map.put(key[i], item[i]); void put2(){ for (.....) try{ map.put(key[i], item[i]);} catch (...){} </code></pre> <p><strong>Question revision</strong>: The question wasn't that clear. Let me revise the question a little. I forgot the casting so that put2 depends on cast exception failure. isAssignableFrom(), isInstanceOf() and instanceof are similar functionally and therefore incur the same expense just one is a method to include subclasses,while the 2nd is for exact type matching and the 3rd is the operator version. Both reflective methods and exceptions are expensive operations.</p> <p>My question is for those who have done some benchmarking in this area - which is less expensive and preferable: instanceof/isassignablefrom vs cast exception?</p> <pre><code>void put1(){ for (.....) if (Animal.class.isAssignableFrom(item[i].getClass()) map.put(key[i], (Animal)item[i]); void put2(){ for (.....) try{ map.put(key[i], (Animal)item[i]);} catch (...){} </code></pre> http://stackoverflow.com/questions/1739552/preserving-script-tags-and-more-in-ckeditor 1 Preserving SCRIPT tags (and more) in CKEditor Jonathan Sampson 2009-11-16T01:02:23Z 2009-11-21T01:43:22Z <p><strong>Update</strong>: I'm thinking the solution to this problem is in <a href="http://docs.cksource.com/ckeditor%5Fapi/symbols/CKEDITOR.config.html#.protectedSource" rel="nofollow"><code>CKEDITOR.config.protectedSource()</code></a>, but my regular-expression experience is proving to be too juvenile to handle this issue. How would I go about exempting all tags that contain the 'preserved' class from being touched by CKEditor?</p> <p><hr></p> <p>Is it possible to create a block of code within the CKEditor that will not be touched by the editor itself, and will be maintained in its intended-state until explicitly changed by the user? I've been attempting to input javascript variables (bound in script tags) and a flash movie following, but CKEditor continues to rewrite my pasted code/markup, and in doing so breaking my code.</p> <p>I'm working with the following setup:</p> <pre><code>&lt;script type="text/javascript"&gt; var editor = CKEDITOR.replace("content", { height : "500px", width : "680px", resize_maxWidth : "680px", resize_minWidth : "680px", toolbar : [ ['Source','-','Save','Preview'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], ['Image','Table','HorizontalRule','SpecialChar'] ] }); CKFinder.SetupCKEditor( editor, "&lt;?php print url::base(); ?&gt;assets/ckfinder" ); &lt;/script&gt; </code></pre> <p><strong>UPDATE:</strong> I suppose the most ideal solution would be to preserve the contents of any tag that contains <code>class="preserve"</code> enabling much more than the limited exclusives.</p> http://stackoverflow.com/questions/1773349/java-coding-practice-runtime-exceptions-and-this-scenario 0 Java coding practice, runtime exceptions and this scenario Berlin Brown 2009-11-20T21:27:58Z 2009-11-20T21:51:37Z <p>In the following scenario, I was trying to see how to handle this code and it how it relates to Runtimexception. I have read that is generally better to throw runtime exceptions as opposed to rely on static exceptions. And maybe even better to catch a static checked exception and throw an unchecked exception.</p> <p>Are there any scenarios where it is OK to catch a static exception, possibly the catch-all Exception and just handle the exception. Possibly log an error message and continue on.</p> <p>In the code below, in the execute1 method and execute2 method, let us say there is volatile code, do you catch the static exception and then rethrow? Or possibly if there are other errors:</p> <p>if (null == someObj) { throw new RuntimeException(); }</p> <p>Is this an approach you use?</p> <p><strong>Pseudo Code:</strong></p> <pre><code>public class SomeWorkerObject { private String field1 = ""; private String field2 = ""; public setField1() { } public setField2() { } // Do I throw runtime exception here? public execute1() { try { // Do something with field 1 // Do something with field 2 } catch(SomeException) { throw new RuntimeException(); } } // Do I throw runtime exception here? public execute2() { try { // Do something with field 1 // Do something with field 2 } catch(SomeException) { throw new RuntimeException(); } } } public class TheWeb { public void processWebRequest() { SomeWorkerObject obj = new SomeWorkerObject(); obj.setField1("something"); obj.setField2("something"); obj.execute1(); obj.execute2(); // Possibility that runtime exception thrown? doSomethingWith(obj); } } </code></pre> <p>I have a couple of problems with this code. There are times when I don't want a runtimeexception to be thrown because then execution stops in the calling method. It seems if I trap the errors in the method, maybe I can continue. But I will know if I can continue later on the program.</p> <p>In the example above, what if obj.execute1() throws a Runtimeexception, then the code exits?</p> <p>Edited: This guy seems to answer a lot of my questions, but I still want to hear your opinions.</p> <p><a href="http://misko.hevery.com/2009/09/16/checked-exceptions-i-love-you-but-you-have-to-go/" rel="nofollow">http://misko.hevery.com/2009/09/16/checked-exceptions-i-love-you-but-you-have-to-go/</a></p> <p>"Checked exceptions force me to write catch blocks which are meaningless: more code, harder to read, and higher chance that I will mess up the rethrow logic and eat the exception."</p> http://stackoverflow.com/questions/1747665/biff-exception-in-java 0 Biff exception in Java Karthik.m 2009-11-17T09:41:58Z 2009-11-20T13:08:44Z <p>When I tried to read an Excel file in Java it throws "biff exception".</p> <p>What does this mean? I tried to Google it but wasn't able to find a proper explanation.</p> <pre><code>jxl.read.biff.BiffException: Unable to recognize OLE stream at jxl.read.biff.CompoundFile.&lt;init&gt;(CompoundFile.java:116) at jxl.read.biff.File.&lt;init&gt;(File.java:127) at jxl.Workbook.getWorkbook(Workbook.java:221) at jxl.Workbook.getWorkbook(Workbook.java:198) at Com.Parsing.ExcelFile.excel(Extract.java:20) at Com.Parsing.Extract.main(Extract.java:55) </code></pre>