-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Iniciante] - Imprimir uma mensagem caso haja erro na Charge. #36
Comments
pedromsneto91
changed the title
INICIANTE -> erros.
[Iniciante] - Imprimir uma mensagem caso haja erro na Charge.
Sep 6, 2018
Para o caso de não aprovadas e sendo bem simples e sem tratar o erro específico:
|
Ou usando um try/catch no caso de erro:
|
Olá, Thiago,
Obrigado pelas informações. Com certeza será muito útil!
Att,
Em qua, 27 de fev de 2019 às 14:31, Thiago A. Klein <
[email protected]> escreveu:
… Ou usando um try/catch no caso de erro:
try {
$return = Iugu_Charge::create($charge);
} catch (Exception $e) {
echo 'Exceção capturada: ', $e->getMessage(), "\n";
}
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#36 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ATvIai7dlubGuD1NTJ6vJXT577zzpkC9ks5vRsD0gaJpZM4WdBjl>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Olá!
Me foi pedido para gerar uma mensagem de erro caso acontece alguma falha no envio da charge.
Consegui printar a charge em si por meio do
print_r($charge)
(Coloquei a chamadaIugu_Charge::create(...)
dentro de uma variável$charge
).O que eu gostaria de fazer é: caso algum erro aconteça e gere um LR diferente de 00(caso não haja sucesso na charge), eu possa imprimir uma mensagem "bonitinha" para o usuário.
The text was updated successfully, but these errors were encountered: