2014-05-20 17:44:57 -04:00
|
|
|
<?php
|
2024-05-23 03:26:56 -04:00
|
|
|
|
2014-05-20 17:44:57 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2014-05-20 17:44:57 -04:00
|
|
|
*/
|
|
|
|
|
// use OCP namespace for all classes that are considered public.
|
2024-05-23 03:26:56 -04:00
|
|
|
// This means that they should be used by apps instead of the internal Nextcloud classes
|
2019-11-22 14:52:10 -05:00
|
|
|
|
2014-05-20 17:44:57 -04:00
|
|
|
namespace OCP\Files;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Exception for a file that is locked
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2014-05-20 17:44:57 -04:00
|
|
|
*/
|
|
|
|
|
class LockNotAcquiredException extends \Exception {
|
|
|
|
|
/** @var string $path The path that could not be locked */
|
|
|
|
|
public $path;
|
|
|
|
|
|
|
|
|
|
/** @var integer $lockType The type of the lock that was attempted */
|
|
|
|
|
public $lockType;
|
|
|
|
|
|
2015-06-19 04:51:36 -04:00
|
|
|
/**
|
|
|
|
|
* @since 7.0.0
|
|
|
|
|
*/
|
2024-03-28 11:13:19 -04:00
|
|
|
public function __construct($path, $lockType, $code = 0, ?\Exception $previous = null) {
|
2023-09-26 04:42:38 -04:00
|
|
|
$message = \OCP\Util::getL10N('core')->t('Could not obtain lock type %d on "%s".', [$lockType, $path]);
|
2014-05-20 17:44:57 -04:00
|
|
|
parent::__construct($message, $code, $previous);
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-19 04:51:36 -04:00
|
|
|
/**
|
|
|
|
|
* custom string representation of object
|
|
|
|
|
*
|
|
|
|
|
* @since 7.0.0
|
|
|
|
|
*/
|
2024-04-02 11:13:35 -04:00
|
|
|
public function __toString(): string {
|
2024-09-15 15:40:55 -04:00
|
|
|
return self::class . ": [{$this->code}]: {$this->message}\n";
|
2014-05-20 17:44:57 -04:00
|
|
|
}
|
2014-08-31 04:05:59 -04:00
|
|
|
}
|