Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/ForbiddenHttpException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace Fuzz\HttpException;

/**
* Empty class providing the formal status phrase for 403
*/
class ForbiddenHttpException extends AccessDeniedHttpException
{
/**
* Error code storage;
*
* @const string
*/
const ERROR = 'forbidden';
}