aboutsummaryrefslogtreecommitdiffstats
path: root/core/templates/print_xml_exception.php
blob: f103e13545f347d59f942beff94539fcd8bd3cfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

use OCP\IL10N;

/**
 * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-FileCopyrightText: 2012-2015 ownCloud, Inc.
 * SPDX-License-Identifier: AGPL-3.0-only
 */
function print_exception(Throwable $e, IL10N $l): void {
	p($e->getTraceAsString());

	if ($e->getPrevious() !== null) {
		print_unescaped('<s:previous-exception>');
		print_exception($e->getPrevious(), $l);
		print_unescaped('</s:previous-exception>');
	}
}