Why debugger going into catch block. What's the issue?? kindly tell me.
exception:"Thread was being aborted".
    protected void lnkResponse_Click(object sender, EventArgs e)
    {
        try
        {
            Session["idTicket"] = hfIdTicket.Value;
            Response.Redirect("~/Forms/TicketChat.aspx");
        }
        catch (Exception)
        {
            throw;
        }
    }
 
     
    