aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/lib/Sabre/CalDAV/Exception/InvalidComponentType.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/lib/Sabre/CalDAV/Exception/InvalidComponentType.php')
-rw-r--r--vendor/sabre/dav/lib/Sabre/CalDAV/Exception/InvalidComponentType.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/vendor/sabre/dav/lib/Sabre/CalDAV/Exception/InvalidComponentType.php b/vendor/sabre/dav/lib/Sabre/CalDAV/Exception/InvalidComponentType.php
deleted file mode 100644
index f2a64e33f..000000000
--- a/vendor/sabre/dav/lib/Sabre/CalDAV/Exception/InvalidComponentType.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-namespace Sabre\CalDAV\Exception;
-
-use Sabre\DAV;
-use Sabre\CalDAV;
-
-/**
- * InvalidComponentType
- *
- * @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
- * @author Evert Pot (http://evertpot.com/)
- * @license http://sabre.io/license/ Modified BSD License
- */
-class InvalidComponentType extends DAV\Exception\Forbidden {
-
- /**
- * Adds in extra information in the xml response.
- *
- * This method adds the {CALDAV:}supported-calendar-component as defined in rfc4791
- *
- * @param DAV\Server $server
- * @param \DOMElement $errorNode
- * @return void
- */
- public function serialize(DAV\Server $server, \DOMElement $errorNode) {
-
- $doc = $errorNode->ownerDocument;
-
- $np = $doc->createElementNS(CalDAV\Plugin::NS_CALDAV,'cal:supported-calendar-component');
- $errorNode->appendChild($np);
-
- }
-
-}