mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			322 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			322 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Exceptions\Service\Database;
 | 
						|
 | 
						|
use Pterodactyl\Exceptions\PterodactylException;
 | 
						|
 | 
						|
class DatabaseClientFeatureNotEnabledException extends PterodactylException
 | 
						|
{
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        parent::__construct('Client database creation is not enabled in this Panel.');
 | 
						|
    }
 | 
						|
}
 |