xref: /webtrees/resources/views/setup/step-6-failed.phtml (revision b9a4a6c608ac9f9f3bf6c12fbe1fbe871f30fedb)
1<?php
2
3declare(strict_types=1);
4
5use Fisharebest\Webtrees\I18N;
6
7/**
8 * @var Throwable $exception
9 */
10
11?>
12
13<p>
14    <?= I18N::translate('An unexpected database error occurred.') ?>
15</p>
16
17<pre><?= $exception->getMessage() ?></pre>
18
19<pre><?= $exception->getTraceAsString() ?></pre>
20
21<p>
22    <?= I18N::translate('The webtrees developers would be very interested to learn about this error. If you contact them, they will help you resolve the problem.') ?>
23</p>
24