Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Exception use fixed
  • Loading branch information
mohammad6006 authored Feb 1, 2018
1 parent ce471a4 commit c29292e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ You can make connection to bank by several way (Facade , Service container):

return $gateway->redirect();
} catch (Exception $e) {
} catch (\Exception $e) {
echo $e->getMessage();
}
Expand All @@ -90,7 +90,7 @@ and in your callback :
// Your code here
} catch (Exception $e) {
} catch (\Exception $e) {
echo $e->getMessage();
}
Expand Down

0 comments on commit c29292e

Please sign in to comment.