mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:46:52 +01: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'));
 | 
						|
    }
 | 
						|
}
 |