PHP - Error and Exception Handling
Given this PHP code, what will be the output?
try {
throw new Exception('General');
} catch (Error $e) {
echo 'Error caught';
} catch (Exception $e) {
echo 'Exception caught';
} catch (Throwable $e) {
echo 'Throwable caught';
}