在一个Class里throw一个Exception,运行一定被中断么,有没有在Controller里给catch回来的方法?
程序员文章站
2022-04-08 13:16:57
...
如题:
在一个Class里throw一个Exception,运行一定被中断么,有没有在Controller里给catch回来的方法?
回复内容:
如题:
在一个Class里throw一个Exception,运行一定被中断么,有没有在Controller里给catch回来的方法?
应该不会,因为异常就是给一个机会去处理错误的,如果处理异常的话,就不会被中断
可以参考官方手册上的介绍:http://php.net/manual/zh/language.exceptions.php
在抛出异常的地方先catch异常,然后在catch里面人为的throw 异常,这样就可以异常往上层方法抛出了
上一篇: SqlServer中插入无时间的日期