* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Exception; class ExceptionTestHandler extends TestHandler { /** * {@inheritDoc} */ public function handle(array $record): bool { throw new Exception("ExceptionTestHandler::handle"); parent::handle($record); } }