Файл: library/Sabre/Sabre/DAV/Exception/FileNotFound.php
Строк: 25
<?php
/**
* FileNotFound
*
*
* @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
*/
/**
* FileNotFound
*
* This Exception is thrown when a Node couldn't be found. It returns HTTP error code 404
*/
class Sabre_DAV_Exception_FileNotFound extends Sabre_DAV_Exception {
/**
* getHTTPCode
*
* @return int
*/
public function getHTTPCode() {
return 404;
}
}