pelican-panel-mirror/app/Exceptions/Service/Allocation/InvalidPortMappingException.php
2024-03-12 22:39:16 -04:00

17 lines
372 B
PHP

<?php
namespace App\Exceptions\Service\Allocation;
use App\Exceptions\DisplayException;
class InvalidPortMappingException extends DisplayException
{
/**
* InvalidPortMappingException constructor.
*/
public function __construct(mixed $port)
{
parent::__construct(trans('exceptions.allocations.invalid_mapping', ['port' => $port]));
}
}