1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-06-10 22:43:16 +02:00
Files
Test-Miroir/SourceQuery/Exception/AuthenticationException.php
T
2021-05-31 13:42:44 +01:00

23 lines
393 B
PHP

<?php
declare(strict_types=1);
/**
* @author Pavel Djundik
*
* @see https://xpaw.me
* @see https://github.com/xPaw/PHP-Source-Query
*
* @license GNU Lesser General Public License, version 2.1
*
* @internal
*/
namespace xPaw\SourceQuery\Exception;
final class AuthenticationException extends SourceQueryException
{
public const BAD_PASSWORD = 1;
public const BANNED = 2;
}