Файл: library/Sabre/Sabre/DAV/Exception/Conflict.php
Строк: 25
<?php
/**
* Conflict
*
* @package Sabre
* @subpackage DAV
* @version $Id$
* @copyright Copyright (C) 2007-2010 Rooftop Solutions. All rights reserved.
* @author Evert Pot (http://www.rooftopsolutions.nl/)
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
*/
/**
* Conflict
*
* A 409 Conflict is thrown when a user tried to make a directory over an existing
* file or in a parent directory that doesn't exist.
*/
class Sabre_DAV_Exception_Conflict extends Sabre_DAV_Exception {
function getHTTPCode() {
return 409;
}
}