Blame view
sources/3rdparty/sabre/dav/lib/Sabre/DAV/Exception/LockTokenMatchesRequestUri.php
1 KB
|
03e52840d
|
1 |
<?php |
|
6d9380f96
|
2 3 4 |
namespace Sabre\DAV\Exception; use Sabre\DAV; |
|
03e52840d
|
5 6 7 8 9 |
/** * LockTokenMatchesRequestUri * * This exception is thrown by UNLOCK if a supplied lock-token is invalid * |
|
6d9380f96
|
10 11 12 |
* @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/). * @author Evert Pot (http://evertpot.com/) * @license http://sabre.io/license/ Modified BSD License |
|
03e52840d
|
13 |
*/ |
|
6d9380f96
|
14 |
class LockTokenMatchesRequestUri extends Conflict {
|
|
03e52840d
|
15 16 17 18 19 20 21 22 23 24 25 26 27 |
/**
* Creates the exception
*/
public function __construct() {
$this->message = 'The locktoken supplied does not match any locks on this entity';
}
/**
* This method allows the exception to include additional information into the WebDAV error response
*
|
|
6d9380f96
|
28 29 |
* @param DAV\Server $server
* @param \DOMElement $errorNode
|
|
03e52840d
|
30 31 |
* @return void
*/
|
|
6d9380f96
|
32 |
public function serialize(DAV\Server $server,\DOMElement $errorNode) {
|
|
03e52840d
|
33 34 35 36 37 38 39 |
$error = $errorNode->ownerDocument->createElementNS('DAV:','d:lock-token-matches-request-uri');
$errorNode->appendChild($error);
}
}
|