I'm using the PDFParser and encountering a thrown exception that breaks my script even if I put it in a try/catch
block like below. Meaning, the exception gets echo
ed but the "Caught exception: "
part does not. I thought this was exactly what try/catch
was for?
try {
$text = $pdf->getText();
}
catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
The github issue comments don't address this issue so I thought SO could help.
I was also facing the same problem of missing catalog fatal error.
I have tried try, throw and catch and now i am not getting any missing catalog fatal error. Below is the code where i have applied try, throw and catch:
Best of luck!!