mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 15:26:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			423 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			423 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Exceptions\Http;
 | 
						|
 | 
						|
use Illuminate\Http\Response;
 | 
						|
use Symfony\Component\HttpKernel\Exception\HttpException;
 | 
						|
 | 
						|
class HttpForbiddenException extends HttpException
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * HttpForbiddenException constructor.
 | 
						|
     */
 | 
						|
    public function __construct(string $message = null, \Throwable $previous = null)
 | 
						|
    {
 | 
						|
        parent::__construct(Response::HTTP_FORBIDDEN, $message, $previous);
 | 
						|
    }
 | 
						|
}
 |