for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @since 3.1.7
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Network\Exception;
* Represents an HTTP 409 error.
class ConflictException extends HttpException
{
* Constructor
* @param string|null $message If no message is given 'Conflict' will be the message
* @param int $code Status code, defaults to 409
public function __construct($message = null, $code = 409)
if (empty($message)) {
$message = 'Conflict';
}
parent::__construct($message, $code);