From d254b98780a9033604afd99bc2f1e298ca6bf390 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 27 Jan 2020 19:37:28 +0000 Subject: [PATCH] more helpful installer exception --- core/exceptions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/exceptions.php b/core/exceptions.php index b7e8fded..af83415f 100644 --- a/core/exceptions.php +++ b/core/exceptions.php @@ -34,7 +34,7 @@ class InstallerException extends RuntimeException public function __construct(string $title, string $body, int $code) { - parent::__construct($title); + parent::__construct($body); $this->title = $title; $this->body = $body; $this->code = $code;