backup/lib/Exceptions/RestoringPointUploadExcepti...

43 строки
1.2 KiB
PHP
Исходник Постоянная ссылка Обычный вид История

2019-04-09 22:03:36 +03:00
<?php
2021-09-08 16:30:29 +03:00
2019-04-09 22:03:36 +03:00
declare(strict_types=1);
/**
2021-10-04 16:45:29 +03:00
* Nextcloud - Backup now. Restore later.
2019-04-09 22:03:36 +03:00
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Maxence Lange <maxence@artificial-owl.com>
2021-09-08 16:30:29 +03:00
* @copyright 2021, Maxence Lange <maxence@artificial-owl.com>
2019-04-09 22:03:36 +03:00
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
2021-09-22 15:36:24 +03:00
namespace OCA\Backup\Exceptions;
2021-09-08 16:30:29 +03:00
2021-09-22 15:36:24 +03:00
use Exception;
2021-09-08 16:30:29 +03:00
/**
2021-09-22 15:36:24 +03:00
* Class RestorationPointUploadException
2021-09-08 16:30:29 +03:00
*
2021-09-22 15:36:24 +03:00
* @package OCA\Backup\Exceptions
2021-09-08 16:30:29 +03:00
*/
class RestoringPointUploadException extends Exception {
2019-04-09 22:03:36 +03:00
}