throw new Exception(); would work but you would probably want to make a new class that inherits from Exception so that you will know in the other class what exception has been thrown.
catch(Exception ex)
{
throw new LoginException(intClientid);
}
where
class LoginException : Exception
{
public LoginException(Object sender, EventArgs e):base(sender,e){}
}
Is this what you wanted... if not maybe you could explain it a little better. Hope it helps.
www.CoderForRent.com
Get A Computer Job!