<?php
/*=====================================================================*\
|| ################################################################### ||
|| # ViewSVN [#]version[#]
|| # --------------------------------------------------------------- # ||
|| # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
|| # This file may not be reproduced in any way without permission.  # ||
|| # --------------------------------------------------------------- # ||
|| # User License Agreement at http://www.iris-studios.com/license/  # ||
|| ################################################################### ||
\*=====================================================================*/

/**
* Mimics functions that will later become the language
* independence system and error system
*
* @pacakge	ViewSVN
*/

/**
* Imaginary class that does error reporting and language
* independence
*
* @package	ViewSVN
* @version	$Id$
*/
class Imaginary
{
	/**
	* Mimics the error reporting function
	*
	* @access	public
	*
	* @param	string	Error
	*
	* @return	string	Error
	*/
	function error($error)
	{
		trigger_error($error, E_USER_ERROR);
	}
}

/*=====================================================================*\
|| ###################################################################
|| # $HeadURL$
|| # $Id$
|| ###################################################################
\*=====================================================================*/
?>