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?
LogicExceptionseems like it’s for “this can never happen” bug checks:A few of the other SPL exceptions, like
BadFunctionCallExceptioninherit from it.RuntimeExceptionis 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. LikeLogicException, 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.