File "Status409.php"
Full Path: /home/jlklyejr/public_html/wp-includes-20241030123433/Requests/src/Exception/Http/Status409.php
File size: 448 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Exception for 409 Conflict responses
*
* @package Requests\Exceptions
*/
namespace WpOrg\Requests\Exception\Http;
use WpOrg\Requests\Exception\Http;
/**
* Exception for 409 Conflict responses
*
* @package Requests\Exceptions
*/
final class Status409 extends Http {
/**
* HTTP status code
*
* @var integer
*/
protected $code = 409;
/**
* Reason phrase
*
* @var string
*/
protected $reason = 'Conflict';
}