Blame view

sources/3rdparty/sabre/dav/lib/Sabre/DAV/Exception/LockTokenMatchesRequestUri.php 1 KB
03e52840d   Kload   Init
1
  <?php
6d9380f96   Cédric Dupont   Update sources OC...
2
3
4
  namespace Sabre\DAV\Exception;
  
  use Sabre\DAV;
03e52840d   Kload   Init
5
6
7
8
9
  /**
   * LockTokenMatchesRequestUri
   *
   * This exception is thrown by UNLOCK if a supplied lock-token is invalid
   *
6d9380f96   Cédric Dupont   Update sources OC...
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   Kload   Init
13
   */
6d9380f96   Cédric Dupont   Update sources OC...
14
  class LockTokenMatchesRequestUri extends Conflict {
03e52840d   Kload   Init
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   Cédric Dupont   Update sources OC...
28
29
       * @param DAV\Server $server
       * @param \DOMElement $errorNode
03e52840d   Kload   Init
30
31
       * @return void
       */
6d9380f96   Cédric Dupont   Update sources OC...
32
      public function serialize(DAV\Server $server,\DOMElement $errorNode) {
03e52840d   Kload   Init
33
34
35
36
37
38
39
  
          $error = $errorNode->ownerDocument->createElementNS('DAV:','d:lock-token-matches-request-uri');
          $errorNode->appendChild($error);
  
      }
  
  }