//I have wriiten code in Catch Block
try
{
}
catch(Excepetion ex)
{
// I have written code Here If Exception Occurs here then how to handle it.
}
|
You can put a try catch inside the catch block, or you can simply throw the exception again. Its better to have finally block with your try catch so that even if an exception occurs in the catch block, finally block code gets executed.
Finally block may not get executed in certain exceptions. You may see Constrained Execution Regions for more reliable mechanism. |
|||
|
|
The best way is to develop your own exceptions for different Layers of application and throw it with inner exception. It will be handled at the next layer of your application. If you think, that you can get a new Exception in the catch block, just re throw this exception without handling. Let's imagine that you have two layers: Business Logic Layer (BLL) and Data Access Layer (DAL) and in a catch block of DAL you have an exception. DAL:
BLL:
|
|||
|
|
|
|||
|
|
|
For the lines of code that could throw an exception in
|
||||
|
|
|
A catch block isn't special in any particular way. You will have to either use another try/catch block or not handle the error. |
|||
|
|
|
Double-faulting often happens in well-designed 3g programming languages. Since protected mode and the 286, the general design for hardware languages is to reset the chip on a triple fault. You are probably ok designing your way out of a double fault. Don't feel bad about having to do something to stop processing / report an error to the user in this case. If you run into a case where, eg., you catch an IO exception (reading/writing data) and then try to close the stream you're reading from, and that also fails, its not a bad pattern to fail dramatically and warn the user that something truly exceptional happened. |
|||
|
|
|
My friend Atul.. if you if write try..catch in catch block, and if again exception occurs in inner try..catch, same problem will raise again. So address this issue you can handle those errors in application level events in Global.asax check below links.. http://msdn.microsoft.com/en-us/library/24395wz3%28v=vs.100%29.aspx http://msdn.microsoft.com/en-us/library/fwzzh56s%28v=vs.80%29.aspx let me know if this works for you.. :) |
|||
|
|
try/catch/finallyblocks nested in one another is a code smell--at least it is to me :). – Jduv Nov 28 '12 at 4:58