1234567891011121314151617181920212223242526272829 |
- <?php
- namespace OCP\Share\Exceptions;
- class ShareNotFound extends GenericShareException {
-
- public function __construct($message = '', ...$arguments) {
- if (empty($message)) {
- $message = 'Share not found';
- }
- parent::__construct($message, ...$arguments);
- }
- }
|