well what do you mean by JUMP??? it sounds like a dreaded GOTO if you are talking about what I think you are talking about... but lets say you had a sub routine to handle something, you could certainly call it from the catch block
VB Code:
  1. Try
  2.     'Code here
  3. Catch exp As Exception
  4.     MySubroutine 'calls subroutine to do stuff
  5. End Try
but please clarify what you mean exactly.