mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 02:27:59 +01:00
187 B
187 B
InvalidCatch
Emitted when trying to catch a class/interface that doesn't extend Exception
or implement Throwable
class A {}
try {
$worked = true;
}
catch (A $e) {}