1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/9687] Add ip banning support incl. CIDR support

PHPBB3-9687
This commit is contained in:
Marc Alexander
2023-07-04 21:21:54 +02:00
parent d99968a800
commit ec4a53169a
3 changed files with 107 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?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\ban\exception;
use phpbb\exception\runtime_exception;
class no_valid_ips_exception extends runtime_exception
{
}