ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
ilWebDAVNotDavableException.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22{
23 public const OBJECT_TYPE_NOT_DAVABLE = 'This object type is not davable!';
24 public const FILE_EXTENSION_NOT_ALLOWED = 'This object has a forbidden file extension!';
25 public const OBJECT_TITLE_NOT_DAVABLE = 'This object title is invalid or hidden!';
26 public const OBJECT_HIDDEN = 'This object is hidden!';
27
31 public function __construct($message)
32 {
33 parent::__construct($message);
34 }
35}
Base class for ILIAS Exception handling.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc