开发者

LogicException vs. RuntimeException

I was wondering if there was a rule saying when to use which Exception in PHP... When do I have to throw a LogicException and when a RuntimeException?

For example when it comes to exceptions like PageNotFoundException, from which开发者_运维问答 exception class should I inherit?


LogicException seems like it's for "this can never happen" bug checks:

Exception that represents error in the program logic. This kind of exception should directly lead to a fix in your code.

A few of the other SPL exceptions, like BadFunctionCallException inherit from it.

RuntimeException is for cases where an error happens that could only be detected while the program is running. The naming is a holdover from compiled languages, where certain errors can be detected at compile time. Like LogicException, a few of the other SPL exceptions inherit from it.

You probably don't want to use either of these as the base for your own specific extensions unless you know for sure that your code could produce another exception in the inheritance hierarchy and you'd want to catch any of those instead of your specific exception or all exceptions.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜