(PHP 5 >= 5.3.0, PHP 7)
Exception::getPrevious — Retorna Exception anterior
Retorna a Exception anterior (o terceiro parâmetro do método Exception::__construct()).
Esta função não possui parâmetros.
Retorna a Exception anterior se disponível
senão NULL
.
Exemplo #1 Exception::getPrevious() example
Iterando e imprimindo a pilha de erro.
<?php
class MyCustomException extends Exception {}
function doStuff() {
try {
throw new InvalidArgumentException("Você está fazendo isso errado!", 112);
} catch(Exception $e) {
throw new MyCustomException("Alguma coisa aconteceu", 911, $e);
}
}
try {
doStuff();
} catch(Exception $e) {
do {
printf("%s:%d %s (%d) [%s]\n", $e->getFile(), $e->getLine(), $e->getMessage(), $e->getCode(), get_class($e));
} while($e = $e->getPrevious());
}
?>
O exemplo acima irá imprimir algo similar à:
/home/bjori/ex.php:8 Alguma coisa aconteceu (911) [MyCustomException] /home/bjori/ex.php:6 Você está fazendo isso errado! (112) [InvalidArgumentException]