exception classes
ASP.NET
3
Posts
2
Posters
0
Views
1
Watching
-
In .net we have try catch and final blocks are there...or anymore...like throw and throws ..i think they are in java...is it in .net too...can anybody tell and explain abt them.?
pavan...
-
In a Try Catch block you can re- throw an exception so that it gets caught again later in the code. You can also use throw inside the try so that you go to the catch logic. The syntax is: throw new Exception... Hope that helps. Ben