EscolaLMS/API

View on GitHub
app/Exceptions/ForbiddenException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Exceptions;

class ForbiddenException extends \Exception
{
    public function __construct(?string $message = null)
    {
        parent::__construct($message ?? 'Forbidden');
    }
}