mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:46:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			387 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			387 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Exceptions\Service\Allocation;
 | 
						|
 | 
						|
use App\Exceptions\DisplayException;
 | 
						|
 | 
						|
class AutoAllocationNotEnabledException extends DisplayException
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * AutoAllocationNotEnabledException constructor.
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        parent::__construct(
 | 
						|
            'Server auto-allocation is not enabled for this instance.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |