mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/12683] Improve exception handling
PHPBB3-12683
This commit is contained in:
21
phpBB/phpbb/di/exception/di_exception.php
Normal file
21
phpBB/phpbb/di/exception/di_exception.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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\di\exception;
|
||||
|
||||
use phpbb\exception\runtime_exception;
|
||||
|
||||
class di_exception extends runtime_exception
|
||||
{
|
||||
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace phpbb\di\exception;
|
||||
|
||||
class multiple_service_definitions_exception extends di_exception
|
||||
{
|
||||
|
||||
}
|
8
phpBB/phpbb/di/exception/service_not_found_exception.php
Normal file
8
phpBB/phpbb/di/exception/service_not_found_exception.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace phpbb\di\exception;
|
||||
|
||||
class service_not_found_exception extends di_exception
|
||||
{
|
||||
|
||||
}
|
Reference in New Issue
Block a user