php-error-handling
Installation
SKILL.md
PHP Error Handling
Priority: P0 (CRITICAL)
Structure
See implementation examples for directory layout.
Build Exception Hierarchies
- Exception-Driven: Favor
throwing exceptionsover returningfalseornullfor error states. - Custom Exceptions: Extend
RuntimeExceptionorLogicExceptionfor domain-specific errors. - Multi-Catch: Use Union types in catch blocks:
catch (DomainException | InvalidArgumentException $e).
See implementation examples for domain exception hierarchy with multi-catch and finally.