xref: /webtrees/resources/views/setup/step-6-failed.phtml (revision 36de22acf6348b1059dac63e3cd19589574906ac)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5/**
6 * @var Throwable $exception
7 */
8
9?>
10
11<p>
12    <?= I18N::translate('An unexpected database error occurred.') ?>
13</p>
14
15<pre><?= $exception->getMessage() ?></pre>
16
17<pre><?= $exception->getTraceAsString() ?></pre>
18
19<p>
20    <?= 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.') ?>
21</p>
22