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