cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
16 lines
388 B
PHP
16 lines
388 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Exceptions\Service\Allocation;
|
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
|
|
|
class InvalidPortMappingException extends DisplayException
|
|
{
|
|
/**
|
|
* InvalidPortMappingException constructor.
|
|
*/
|
|
public function __construct(mixed $port)
|
|
{
|
|
parent::__construct(trans('exceptions.allocations.invalid_mapping', ['port' => $port]));
|
|
}
|
|
}
|