diff options
Diffstat (limited to 'apps/files/lib/Exception')
-rw-r--r-- | apps/files/lib/Exception/TransferOwnershipException.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/files/lib/Exception/TransferOwnershipException.php b/apps/files/lib/Exception/TransferOwnershipException.php new file mode 100644 index 00000000000..531c5d513da --- /dev/null +++ b/apps/files/lib/Exception/TransferOwnershipException.php @@ -0,0 +1,14 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCA\Files\Exception; + +use Exception; + +class TransferOwnershipException extends Exception { +} |