PHPUnit provides helper functions and annotations to verify that a given block of code throws an exception and to assert different properties of that exception. The provided helper functions are:
* ``++expectException()++``
* ``++expectExceptionCode()++``
* ``++expectExceptionMessage()++``
* ``++expectExceptionMessageRegExp()++``
This check raises an issue when the throw of an exception is verified using a _try-catch_ approach instead of relying on the provided helper functions.