aboutsummaryrefslogtreecommitdiff
path: root/views/json/messages/exceptions/exception.php
blob: 6255f08a60cf28ff9c90d005316bbc5dc8042cc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
	/**
	 * Elgg exception
	 * Displays a single exception
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @author Curverider Ltd
	 * @link http://elgg.org/
	 * 
	 * @uses $vars['object'] An exception
	 */

	$export = $vars['object'];
	
	global $jsonexport;
	$jsonexport['exceptions'][] = $export;

?>