File "ForbiddenException.php"

Full Path: /var/www/drive/laravel/horizon/src/Exceptions/ForbiddenException.php
File size: 319 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Horizon\Exceptions;

use Symfony\Component\HttpKernel\Exception\HttpException;

class ForbiddenException extends HttpException
{
    /**
     * Create a new exception instance.
     *
     * @return static
     */
    public static function make()
    {
        return new static(403);
    }
}