1 <?php
2 /**
3 * @package Joomla.Legacy
4 * @subpackage Database
5 *
6 * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE.txt
8 */
9
10 defined('JPATH_PLATFORM') or die;
11
12 JLog::add('JDatabaseException is deprecated, use SPL Exceptions instead.', JLog::WARNING, 'deprecated');
13
14 /**
15 * Exception class definition for the Database subpackage.
16 *
17 * @since 1.7
18 * @deprecated 2.5.5
19 */
20 class JDatabaseException extends RuntimeException
21 {
22 }
23