Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
7answers
271 views

.net Exception catch block

What's the difference between try { ... } catch { ... } and try { ... } catch(Exception) { ... } ? I realize in either case, the exception instance is not available but is there anything that I ...
7
votes
8answers
2k views

Under C# how much of a performance hit is a try, throw and catch block

First of all, a disclaimer: I have experience in other languages, but am still learning the subtleties of C# On to the problem... I am looking at some code, which uses the try/catch blocks in a way ...
6
votes
6answers
152 views

Why brackets are necessary in catch block in java?

In java if we have to execute only one statement after if or for the brackets are not necessary. We can write: if(condition) executeSingleStatement(); or for(init;condition;incr) ...
5
votes
3answers
159 views

Questions regarding ordering of catch statements in catch block - compiler specific or language standard?

I am currently using Visual Studio Express C++ 2008, and have some questions about catch block ordering. Unfortunately, I could not find the answer on the internet so I am posing these questions to ...
4
votes
5answers
3k views

try-catch block in Java - execution statements in catch code

I have a question about the order of the execution of statements in a catch block in Java. when I run the following class Test1 (see below), I expect to have as output first Hi!, then the result of ...
3
votes
7answers
1k views

Catching exceptions in Java

There are certain predefined exceptions in Java, which, if thrown, report that something serious has happened and you'd better improve your code, than catching them in a catch block (if I have ...
2
votes
1answer
27 views

MVC RedirectToAction in a catch block

I´m trying to redirect to an action from one controller to another if something in a try-block goes wrong. What I want to achieve is a general way of presenting a view to the user if something goes ...
2
votes
1answer
99 views

get variable in catch clause

Hello I need to write function than will send and receive messages over tcp and auto reconnect if connection is broken. Messages is taken from STM Channel f ch a b = h <- connectTo a b ...
2
votes
2answers
905 views

Toast does not display when used in catch block

I noticed that a toast isn't displayed when it's used inside a catch block. Does anyone know how to show toasts when catching exceptions? An Example: try { // try to open a file } catch ...
2
votes
6answers
420 views

Return statements in catch blocks

I have seen some developers use the return statement in a catch block. Why/when would this be a useful technique to employ? EDIT: I actually just saw the return keyword being used. Thanks
2
votes
1answer
547 views

Code is only executing in the debugger - MS Visual C#

I'm using Microsoft Visual C# 2008 Express Edition. (And I apologize - this is more of a MS Vis C# usability question than a strict programming question...) I wrote a little program. when I run it ...
1
vote
1answer
128 views

Strange problem with return in catch block in Java

I've got a strange problem with a try/catch block I'm using. I've got this method, which just gets some data from a remote service and stores it. public WFSGetCapabilitiesResponse ...
0
votes
2answers
121 views

How to catch Errors arising before the message enters the scope block in Biztalk

Biztalk Error I am having an Biztalk Orchestration,In It I am having a Biztalk Scope and Catch Block in order to catch errors arising inside the scope.I am able to catch error in it whenever there is ...
0
votes
2answers
27 views

How do you do things according to the thrown value?

MDC says to do this, but also says that they think it's just a FireFox extension: live code: http://jsfiddle.net/vQsUX/ try { throw("InvalidNameException"); } catch (e if e == ...
0
votes
4answers
67 views

.Net: What is your confident approach in “Catch” section of try-catch block, When developing CRUD operations?

I was wondering if there would be any confident approach for use in catch section of try-catch block when developing CRUD operations(specially when you use a Database as your data source) in .Net? ...
0
votes
3answers
807 views

How to Avoid Throwing An Error When SQL Select Returns Nothing

I read somewhere that one should never use error conditions as normal program flow. Makes excellent sense to me... But C# application sitting on top of a MySQL db. I need to parse a string value into ...
-2
votes
1answer
188 views

Is “ANR” exception or error or what?

Is ANR dialog is exception , error or what . actually can we catch anr in catch ?