From 187af7df5ac7747582bd3f0dabc87f0435672713 Mon Sep 17 00:00:00 2001 From: PululuK Date: Tue, 1 Feb 2022 19:15:55 +0100 Subject: [PATCH] Add new methd getVerboseMessage --- src/exceptions.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/exceptions.php b/src/exceptions.php index b79bd39..685a6d3 100644 --- a/src/exceptions.php +++ b/src/exceptions.php @@ -32,6 +32,14 @@ public function getRunnerResult() { return $this->runnerResult; } + + /** + * @return string + */ + public function getVerboseMessage() + { + return $this->runnerResult->toText(); + } }