try 和catch的有关问题!搞不懂啊出大有关问题了

try 和catch的问题!!!搞不懂啊```````出大问题了;try{myConnection.Open()}catch(exceptionex){thrownewE

try 和catch的问题!!!搞不懂啊```````出大问题了;
try
                {
                        myConnection.Open();
                }
                catch   (exception   ex)
                {
                        throw   new   Exception( "1   DATA   ERROR! ",   ex);
                }
报错误:
错误1找不到类型或命名空间名称“exception”(是否缺少   using   指令或程序集引用?)d:\My   Documents\Visual   Studio   2005\WebSites\zhumin\App_Code\LeavewordDB.cs2915d:\...\zhumin\

错误2当前上下文中不存在名称“ex”d:\My   Documents\Visual   Studio   2005\WebSites\zhumin\App_Code\LeavewordDB.cs3150d:\...\zhumin\


[解决办法]
Exception, 首字母大写。给分。