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.