diff options
author | MateBartus <mate.bartus@gmail.com> | 2015-04-17 23:17:23 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-07-08 01:27:56 +0200 |
commit | 8155205ae7a5ec27ff3058137513fc480d7ee6c5 (patch) | |
tree | 75582a89e64da1477aa7f5161c15f0600c462d62 /phpBB/install/exception/user_interaction_required_exception.php | |
parent | 53c5610080d45660fc8d5528135408cb9ac293cf (diff) | |
download | forums-8155205ae7a5ec27ff3058137513fc480d7ee6c5.tar forums-8155205ae7a5ec27ff3058137513fc480d7ee6c5.tar.gz forums-8155205ae7a5ec27ff3058137513fc480d7ee6c5.tar.bz2 forums-8155205ae7a5ec27ff3058137513fc480d7ee6c5.tar.xz forums-8155205ae7a5ec27ff3058137513fc480d7ee6c5.zip |
[ticket/13740] Implementation of the new installer framework
[ci skip]
PHPBB3-13740
Diffstat (limited to 'phpBB/install/exception/user_interaction_required_exception.php')
-rw-r--r-- | phpBB/install/exception/user_interaction_required_exception.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/phpBB/install/exception/user_interaction_required_exception.php b/phpBB/install/exception/user_interaction_required_exception.php new file mode 100644 index 0000000000..0aaae648cf --- /dev/null +++ b/phpBB/install/exception/user_interaction_required_exception.php @@ -0,0 +1,22 @@ +<?php +/** + * + * This file is part of the phpBB Forum Software package. + * + * @copyright (c) phpBB Limited <https://www.phpbb.com> + * @license GNU General Public License, version 2 (GPL-2.0) + * + * For full copyright and license information, please see + * the docs/CREDITS.txt file. + * + */ + +namespace phpbb\install\exception; + +/** + * This exception should be thrown when user interaction is inevitable + */ +class user_interaction_required_exception extends installer_exception +{ + +} |