0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-21 21:47:36 +00:00
nextcloud_server/lib/public/Files/LockNotAcquiredException.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2014-05-20 17:44:57 -04:00
<?php
2014-05-20 17:44:57 -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.
// This means that they should be used by apps instead of the internal Nextcloud classes
2014-05-20 17:44:57 -04:00
namespace OCP\Files;
/**
* Exception for a file that is locked
* @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 10:51:36 +02:00
/**
* @since 7.0.0
*/
public function __construct($path, $lockType, $code = 0, ?\Exception $previous = null) {
$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 10:51:36 +02:00
/**
* custom string representation of object
*
* @since 7.0.0
*/
public function __toString(): string {
2014-05-20 17:44:57 -04:00
return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
}
2014-08-31 10:05:59 +02:00
}