Skip to content

Commit

Permalink
Update OCP
Browse files Browse the repository at this point in the history
  • Loading branch information
nextcloud-command committed Dec 6, 2024
1 parent 3df7a3b commit d72443c
Show file tree
Hide file tree
Showing 27 changed files with 1,881 additions and 0 deletions.
Empty file added NCU/.gitkeep
Empty file.
17 changes: 17 additions & 0 deletions NCU/Config/Exceptions/IncorrectTypeException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace NCU\Config\Exceptions;

use Exception;

/**
* @experimental 31.0.0
*/
class IncorrectTypeException extends Exception {
}
17 changes: 17 additions & 0 deletions NCU/Config/Exceptions/TypeConflictException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace NCU\Config\Exceptions;

use Exception;

/**
* @experimental 31.0.0
*/
class TypeConflictException extends Exception {
}
17 changes: 17 additions & 0 deletions NCU/Config/Exceptions/UnknownKeyException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace NCU\Config\Exceptions;

use Exception;

/**
* @experimental 31.0.0
*/
class UnknownKeyException extends Exception {
}
Loading

0 comments on commit d72443c

Please sign in to comment.