2019-03-16 11:19:25 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-08-09 14:25:21 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-03-16 11:19:25 -04:00
|
|
|
/**
|
2024-05-27 11:39:07 -04:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-03-16 11:19:25 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCA\DAV\CalDAV\Reminder\NotificationProvider;
|
|
|
|
|
|
|
|
|
|
class ProviderNotAvailableException extends \Exception {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ProviderNotAvailableException constructor.
|
|
|
|
|
*
|
|
|
|
|
* @since 16.0.0
|
|
|
|
|
*
|
|
|
|
|
* @param string $type ReminderType
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(string $type) {
|
|
|
|
|
parent::__construct("No notification provider for type $type available");
|
|
|
|
|
}
|
|
|
|
|
}
|