Problem Statement
Explain the exception hierarchy in PHP.
Explanation
All exceptions in PHP inherit from the Throwable interface. Throwable has two main classes: Error and Exception. The Exception class is for traditional exceptions, while Error represents fatal issues like memory or syntax problems.
