17 lines
		
	
	
		
			372 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			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]));
 | 
						|
    }
 | 
						|
}
 |