mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
The diff can be checked using: git diff --ignore-all-space --ignore-blank-lines To see only the changes not related to blank lines. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
19 lines
453 B
PHP
19 lines
453 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Authentication\Exceptions;
|
|
|
|
use Exception;
|
|
use Throwable;
|
|
|
|
class InvalidProviderException extends Exception {
|
|
public function __construct(string $providerId, ?Throwable $previous = null) {
|
|
parent::__construct("The provider '$providerId' does not exist'", 0, $previous);
|
|
}
|
|
}
|