码迷,mamicode.com
首页 > 其他好文 > 详细

自定义抛出异常

时间:2017-02-24 19:35:19      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:echo   err   自定义   抛出异常   try   etl   cep   .com   message   

<?php
class myexception extends Exception
{
public function errormessage()
{
$errmessage = "error :".$this->getline()." in ".$this->getfile()."<b> error:".$this->getMessage()
."</b>";
return $errmessage;
}
}
$email="1348405969@qq.com";

try
{
try
{
throw new Exception($email);
}
catch (Exception $e)
{
throw new myexception($email);
}
}
catch(myexception $e)
{
echo $e->errormessage();
}
/* try
{
throw new Exception($email);
}
catch(Exception $e)
{
try
{
throw new myexception($email);
}

catch(myexception $e)
{
echo $e->errormessage();
}
}*/

?>

自定义抛出异常

标签:echo   err   自定义   抛出异常   try   etl   cep   .com   message   

原文地址:http://www.cnblogs.com/jiangger/p/6439826.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!