From a94799e37e304a8219acea2e70f227e85926cfa4 Mon Sep 17 00:00:00 2001 From: Dominik Pfaffenbauer Date: Wed, 13 Mar 2019 10:06:39 +0100 Subject: [PATCH] put out better error message --- Action/Api/AuthorizeAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Action/Api/AuthorizeAction.php b/Action/Api/AuthorizeAction.php index 70da91f..065948e 100755 --- a/Action/Api/AuthorizeAction.php +++ b/Action/Api/AuthorizeAction.php @@ -64,7 +64,7 @@ public function execute($request) return; } - throw new LogicException('Unknown status: '.$response->getStatus()); + throw new LogicException('Unknown status: '.$response->getStatus() . ' ' . $response->getErrorMessage()); } /**