File dav/exception/CMSForbiddenError.php

Last commit: Wed Nov 6 23:20:27 2019 +0100	Jan Dankert	Refactoring: Forward CMS errors to the DAV client.
1 <?php 2 3 namespace dav\exception; 4 5 use Exception; 6 7 class CMSForbiddenError extends Exception 8 { 9 public function __construct($message = "") 10 { 11 parent::__construct($message); 12 } 13 }
Download dav/exception/CMSForbiddenError.php
History Wed, 6 Nov 2019 23:20:27 +0100 Jan Dankert Refactoring: Forward CMS errors to the DAV client.