Esempio n. 1
0
 public void Say()
 {
     try
     {
         ExceptionCreator curCreator = new ExceptionCreator();
         curCreator.Say();
     }
     catch (Exception ex)
     {
         //throw ex;
         throw;
     }
 }
        public void Say()
        {
            try
            {
                ExceptionCreator curCreator = new ExceptionCreator();
                curCreator.Say();

            }
            catch(Exception ex)
            {
                //throw ex;
                throw;
            }
        }