ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
InvalidSyncToken.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\DAV\Exception;
4 
5 use Sabre\DAV;
6 
22 class InvalidSyncToken extends Forbidden {
23 
31  function serialize(DAV\Server $server, \DOMElement $errorNode) {
32 
33  $error = $errorNode->ownerDocument->createElementNS('DAV:', 'd:valid-sync-token');
34  $errorNode->appendChild($error);
35 
36  }
37 
38 }
serialize(DAV\Server $server, \DOMElement $errorNode)
This method allows the exception to include additional information into the WebDAV error response...
$server
Definition: sabredav.php:48
Main DAV server class.
Definition: Server.php:23