27 lines
705 B
PHP
27 lines
705 B
PHP
<?php
|
|
/**
|
|
* Copyright 2007 Maintainable Software, LLC
|
|
* Copyright 2006-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* @author Mike Naberezny <mike@maintainable.com>
|
|
* @author Derek DeVries <derek@maintainable.com>
|
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
|
* @license http://www.horde.org/licenses/bsd
|
|
* @category Horde
|
|
* @package Db
|
|
*/
|
|
|
|
/**
|
|
* Db Exception class.
|
|
*
|
|
* @author Mike Naberezny <mike@maintainable.com>
|
|
* @author Derek DeVries <derek@maintainable.com>
|
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
|
* @license http://www.horde.org/licenses/bsd
|
|
* @category Horde
|
|
* @package Db
|
|
*/
|
|
class Horde_Db_Exception extends Horde_Exception_Wrapped
|
|
{
|
|
}
|