protected void Page_Load(object sender, EventArgs e) { throwex(); } public void throwex() { try { int i = 5; int j = 0; int z = i / j; } catch (Exception ex) { bool rethrow = ExceptionPolicy.HandleException(ex, "Policy1"); //if (rethrow) //{ // throw; //} } finally { //Code --- } }