| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\Framework\Foundation; |
| 4 |
|
| 5 |
use FluentCart\Framework\Foundation\Exceptions\ForbiddenHttpException; |
| 6 |
|
| 7 |
/** |
| 8 |
* @deprecated 2.12.0 Use \FluentCart\Framework\Foundation\Exceptions\ForbiddenHttpException |
| 9 |
* instead. This shim remains so existing throw/catch sites keep |
| 10 |
* working; it produces the same 403 response via Route.php's |
| 11 |
* HttpException branch. |
| 12 |
*/ |
| 13 |
class ForbiddenException extends ForbiddenHttpException |
| 14 |
{ |
| 15 |
// |
| 16 |
} |
| 17 |
|