PHP/Laravel 5.8 and Try / Catch

Just recently updated Laravel from 5.4 to 5.8 (and php from 5.6 to 7.3) and now Sentry catches all exceptions happen in blocks try and catch.

Is there a way to disable Sentry reporting for errors happen in Try/Catch?

Should not report

try {
   some code which can fail...
} catch(Exception $e) {
   some code to handle...
}

Should report

some code which can fail...

Thanks