The best way to handle that is change:

Code:
Throw New Exception("Fill the Address!")
to

Code:
MsgBox("Fill the Address!")
Or raise some event and handle it gracefully, without throwing an exception.