mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-07-23 00:44:26 +02:00
addressbook
admin
api
images
inc
class.egw_exception_db.inc.php
class.egw_exception_db_invalid_sql.inc.php
class.egw_exception_no_permission.inc.php
js
lang
ntlm
setup
src
templates
tests
anon_images.php
anon_lavatar.php
asyncservices.php
asyncwrapper.php
avatar.php
categories.php
changepwd.php
config.php
emclient-signatures.php
etemplate.php
images.php
lang.php
oauth.php
thumbnail.php
tinymce.php
user.php
calendar
doc
emailadmin
filemanager
files
home
importexport
infolog
mail
notifications
pixelegg
preferences
resources
saml
setup
timesheet
.gitignore
.htaccess
.travis.yml
Gruntfile.js
LICENSE.md
README.md
SECURITY.md
about.php
composer.json
composer.lock
groupdav.htaccess
groupdav.php
header.inc.php.template
index.php
install-cli.php
json.php
login.php
logout.php
manifest.json
move-images
package-lock.json
package.json
redirect.php
remote.php
rollup.config.js
service-worker.js
share.php
status.php
tsconfig.json
updateGruntfile.php
web-test-runner.config.mjs
webdav.php
25 lines
643 B
PHP
25 lines
643 B
PHP
<?php
|
|
/**
|
|
* EGroupware API - old deprecated exceptions
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @subpackage accounts
|
|
* @access public
|
|
* @version $Id$
|
|
*/
|
|
|
|
use EGroupware\Api;
|
|
|
|
/**
|
|
* Classic invalid SQL error
|
|
*
|
|
* New InvalidSql exception has to extend deprecated egw_exception_db_invalid_sql
|
|
* to allow legacy code to catch exceptions thrown by Api\Db!
|
|
*
|
|
* @deprecated use Api\Db\Exception\InvalidSql
|
|
*/
|
|
class egw_exception_db_invalid_sql extends Api\Db\Exception {}
|