29 lines
645 B
PHP
29 lines
645 B
PHP
|
<?php
|
||
|
/**
|
||
|
* ownCloud
|
||
|
*
|
||
|
* @author Owen Winkler
|
||
|
* @copyright 2013 Owen Winkler <owen@owncloud.com>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
class OC_Connector_Sabre_Exception_FileLocked extends Sabre_DAV_Exception {
|
||
|
|
||
|
public function __construct($message = "", $code = 0, Exception $previous = null) {
|
||
|
if($previous instanceof \OCP\Files\LockNotAcquiredException) {
|
||
|
$message = sprintf('Target file %s is locked by another process. %s', $previous->path, $previous->getMessage());
|
||
|
}
|
||
|
parent::__construct($message, $code, $previous);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the HTTP statuscode for this exception
|
||
|
*
|
||
|
* @return int
|
||
|
*/
|
||
|
public function getHTTPCode() {
|
||
|
|
||
|
return 503;
|
||
|
}
|
||
|
}
|