21 lines
607 B
PHP
21 lines
607 B
PHP
<?php /** @noinspection PhpMissingFieldTypeInspection */
|
|
|
|
namespace TorstenHettstedt\TimekeepingApi\Controller;
|
|
|
|
use Slim\Exception\HttpSpecializedException;
|
|
|
|
class HttpConflictRequestException extends HttpSpecializedException
|
|
{
|
|
/** @var int */
|
|
protected $code = 409;
|
|
|
|
/** @var string */
|
|
protected $message = 'Conflict.';
|
|
|
|
/** @var string */
|
|
protected $title = '409 Conflict';
|
|
|
|
/** @var string */
|
|
protected $description = 'The 409 (Conflict) status code indicates that the request could not be completed due to a conflict with the current state of the target resource.';
|
|
}
|