Skip to content

Exception Hierarchy

PHP exceptions follow a hierarchy. Throwable ├── Error └── Exception

Both Error and Exception implement the Throwable interface.

try {
throw new Exception("Example");
} catch (Throwable $e) {
echo $e->getMessage();
}