1685671
Ano: 2021
Disciplina: TI - Desenvolvimento de Sistemas
Banca: PROGEP-FURG
Orgão: FURG
Disciplina: TI - Desenvolvimento de Sistemas
Banca: PROGEP-FURG
Orgão: FURG
Provas:
Considerando a execução do trecho de código abaixo:
<?php
class CustomExceptionl extends Exception { }
class CustomException2 extends Exception { }
try {
throw new CustomException2("mensagem");
} catch (CustomExceptionl $exception) {
echo ' custoial- ';
} catch (Exception $exception) {
echo 'exception-';
} catch (CustomException2 $exception) {
echo 'custom2-';
} finally {
echo 'finally';
}
O valor retornado será: