mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 06:26:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			415 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			415 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Exceptions\Service\Allocation;
 | 
						|
 | 
						|
use Pterodactyl\Exceptions\DisplayException;
 | 
						|
 | 
						|
class InvalidPortMappingException extends DisplayException
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * InvalidPortMappingException constructor.
 | 
						|
     *
 | 
						|
     * @param mixed $port
 | 
						|
     */
 | 
						|
    public function __construct($port)
 | 
						|
    {
 | 
						|
        parent::__construct(trans('exceptions.allocations.invalid_mapping', ['port' => $port]));
 | 
						|
    }
 | 
						|
}
 |