Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit ec467df

Browse files
authored
Create ForbiddenHttpException.php
Add Exception class with formal "Forbidden" name for 403
1 parent 01c6ef7 commit ec467df

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/ForbiddenHttpException.php

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Fuzz\HttpException;
4+
5+
/**
6+
* Empty class providing the formal status phrase for 403
7+
*/
8+
class ForbiddenHttpException extends AccessDeniedHttpException
9+
{
10+
/**
11+
* Error code storage;
12+
*
13+
* @const string
14+
*/
15+
const ERROR = 'forbidden';
16+
}

0 commit comments

Comments
 (0)