28 lines
627 B
PHP
28 lines
627 B
PHP
<?php
|
|
|
|
/**
|
|
* InsufficientStorage
|
|
*
|
|
* This Exception can be thrown, when for example a harddisk is full or a quota is exceeded
|
|
*
|
|
* @package Sabre
|
|
* @subpackage DAV
|
|
* @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
|
|
* @author Evert Pot (http://www.rooftopsolutions.nl/)
|
|
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
|
|
*/
|
|
class Sabre_DAV_Exception_InsufficientStorage extends Sabre_DAV_Exception {
|
|
|
|
/**
|
|
* Returns the HTTP statuscode for this exception
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getHTTPCode() {
|
|
|
|
return 507;
|
|
|
|
}
|
|
|
|
}
|