mirror of
https://github.com/pelican-dev/panel.git
synced 2026-02-27 16:03:16 +03:00
17 lines
359 B
PHP
17 lines
359 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Pterodactyl\Exceptions\Service\Allocation;
|
||
|
|
|
||
|
|
use Pterodactyl\Exceptions\DisplayException;
|
||
|
|
|
||
|
|
class TooManyPortsInRangeException extends DisplayException
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* TooManyPortsInRangeException constructor.
|
||
|
|
*/
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
parent::__construct(trans('exceptions.allocations.too_many_ports'));
|
||
|
|
}
|
||
|
|
}
|