Your IP : 3.16.143.122


Current Path : /var/www/admin_ftp_12/data/www/httpdocs/bitrix/modules/bitrixcloud/classes/general/
Upload File :
Current File : /var/www/admin_ftp_12/data/www/httpdocs/bitrix/modules/bitrixcloud/classes/general/exception.php

<?php

class CBitrixCloudException extends Exception
{
	protected $error_code = '';
	protected $debug_info = '';

	public function __construct($message = '', $error_code = '', $debug_info = '')
	{
		parent::__construct($message);
		$this->error_code = $error_code;
		$this->debug_info = $debug_info;
	}

	final public function getErrorCode()
	{
		return $this->error_code;
	}

	final public function getDebugInfo()
	{
		return $this->debug_info;
	}
}