2018-10-12 03:29:55 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2018-10-12 03:29:55 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-10-12 03:29:55 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Accounts;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class PropertyDoesNotExistException
|
|
|
|
|
*
|
|
|
|
|
* @since 15.0.0
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
class PropertyDoesNotExistException extends \Exception {
|
|
|
|
|
/**
|
|
|
|
|
* Constructor
|
|
|
|
|
* @param string $msg the error message
|
|
|
|
|
* @since 15.0.0
|
|
|
|
|
*/
|
2020-04-09 07:53:40 -04:00
|
|
|
public function __construct($property) {
|
2018-10-12 03:29:55 -04:00
|
|
|
parent::__construct('Property ' . $property . ' does not exist.');
|
|
|
|
|
}
|
|
|
|
|
}
|