Fixed missing exception

This commit is contained in:
eldadfux
2019-08-27 12:26:20 +03:00
parent 1f6c0c6438
commit 3dafbda602
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -146,7 +146,7 @@ $utopia->post('/v1/auth/register')
try {
$mail->send();
}
catch(Exception $error) {
catch(\Exception $error) {
// if($failure) {
// $response->redirect($failure);
// return;
@@ -286,7 +286,7 @@ $utopia->post('/v1/auth/register/confirm/resend')
try {
$mail->send();
}
catch(Exception $error) {
catch(\Exception $error) {
//throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}
@@ -518,7 +518,7 @@ $utopia->post('/v1/auth/recovery')
try {
$mail->send();
}
catch(Exception $error) {
catch(\Exception $error) {
//throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}
+2 -2
View File
@@ -382,7 +382,7 @@ $utopia->post('/v1/teams/:teamId/memberships')
try {
$mail->send();
}
catch(Exception $error) {
catch(\Exception $error) {
//throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}
@@ -463,7 +463,7 @@ $utopia->post('/v1/teams/:teamId/memberships/:inviteId/resend')
try {
$mail->send();
}
catch(Exception $error) {
catch(\Exception $error) {
//throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}