mirror of
https://github.com/nextcloud/server.git
synced 2024-11-14 20:36:50 +00:00
fc0b694d37
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
19 lines
301 B
PHP
19 lines
301 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\Mail\Provider\Exception;
|
|
|
|
/**
|
|
* Mail Provider Base Exception
|
|
*
|
|
* @since 30.0.0
|
|
*/
|
|
class Exception extends \Exception {
|
|
|
|
}
|