Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Exception 'bubbles-up' too much

Status
Not open for further replies.

DotNetter

Programmer
May 19, 2005
194
US
I have some code that looks something like this:
Code:
Try
   code block 1
      Try
         code-block 2
         (exception thrown here)
      Catch
         [b]process exception to my heart's content[/b]
      End Try
   code block 1 - continued
Catch
End Try

I want to fully process the exception in the (bold) line - I don't want the exception to bubble-up to the outer catch block. How can I stop the exception from bubbling-up once I've dealt with it myself?

Thanks!
 
Just like that, it should work fine.

Code:
public sub DoThingy
  dim x as integer
  x = 1 + 1
  try
    dim MyExc as new Exception("This is my exception")
  catch exc
    messagebox.show ("Exception: " & exc.message")
  end try

  x = x + 1
  messagebox.show ("X is now: " & x)
end sub
[code]

If you want the exception to rise up the call stack you could do this:

[code]
public sub DoThingy
  dim x as integer
  x = 1 + 1
  try
    dim MyExc as new Exception("This is my exception")
    throw MyExc
  catch exc
    messagebox.show ("Exception: " & exc.message")
    throw exc
  end try

  'This code won't be executed
  x = x + 1
  messagebox.show ("X is now: " & x)
end sub
[code]


-Rick

VB.Net Forum forum796    forum855 ASP.NET Forum
    [monkey][url=http://www.ringdev.com]I believe in killer coding ninja monkeys.[/url][monkey]
 
My bad. You were right - the mistake was elsewhere... [blush]

Thanks!
Dot
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top