Why is catch(Exception) almost always a bad idea?
Answers were Sorted based on User's Feedback
Answer / subasini
Catch(Exception) is Bad Because Of It supress your Fault in
the coding
Is This Answer Correct ? | 4 Yes | 2 No |
if you know what kind of error may occur in that block mean
, will it be right to use catch block without handling the
proper validation?
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / nagaraj
Catch(Exception) means that you catch all the exception
which might not occur. But, really we need to catch only
some type of exception, so we need to catch only those type
instead of catching all the exceptions.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anna
it's not the bad idea of using catch exception.
catch exception catches all the exceptions in try block.
if we use these blocks, we will be able to know where the
exact error is.
if we use one try block, we must use the catch block .
Is This Answer Correct ? | 6 Yes | 6 No |
What is itemrowdatabound for a datagrid?
What is a session http?
What is preprocessor in .net and type, where it use?
What are Master pages? How to define a Master page?
How do you turn off cookies for one page in your site?
How .Net has implemented security for web applications?
Write a code snippet to implement the indentation in json in web api.
Define session in asp.net.
how can u display multi language (i.e english,spanish...) web site?
what is use to destroy an object? illustrate.
What is difference between view state and session state?
how many select state ments are used in stored procedure?