mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-15 14:16:28 +02:00
build
code_sniffer
git-tools
phpBB
adm
assets
cache
config
develop
docs
download
files
images
includes
acp
auth
avatar
cache
captcha
config
controller
exception.php
helper.php
provider.php
resolver.php
cron
db
di
diff
event
extension
groupposition
hook
hooks
lock
log
mcp
notification
php
questionnaire
request
search
style
template
ucp
utf
.htaccess
bbcode.php
class_loader.php
constants.php
datetime.php
error_collector.php
functions.php
functions_acp.php
functions_admin.php
functions_compatibility.php
functions_compress.php
functions_container.php
functions_content.php
functions_convert.php
functions_database_helper.php
functions_display.php
functions_download.php
functions_install.php
functions_jabber.php
functions_messenger.php
functions_module.php
functions_posting.php
functions_privmsgs.php
functions_profile_fields.php
functions_transfer.php
functions_upload.php
functions_url_matcher.php
functions_user.php
index.htm
json_response.php
message_parser.php
session.php
sphinxapi.php
startup.php
user.php
user_loader.php
install
language
store
styles
.htaccess
app.php
common.php
composer.json
composer.lock
cron.php
faq.php
feed.php
index.php
mcp.php
memberlist.php
posting.php
report.php
search.php
ucp.php
viewforum.php
viewonline.php
viewtopic.php
web.config
tests
travis
.gitignore
.travis.yml
README.md
composer.phar
phpunit.xml.all
phpunit.xml.dist
phpunit.xml.functional
25 lines
329 B
PHP
25 lines
329 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package controller
|
|
* @copyright (c) 2012 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Controller exception class
|
|
* @package phpBB3
|
|
*/
|
|
class phpbb_controller_exception extends RuntimeException
|
|
{
|
|
}
|