diff --git a/core/exceptions.php b/core/exceptions.php
index 1c6c8ac7..b7e8fded 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($title);
         $this->title = $title;
         $this->body = $body;
         $this->code = $code;