summaryrefslogtreecommitdiffstats
path: root/lib/public/lock/lockedexception.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/lock/lockedexception.php')
-rw-r--r--lib/public/lock/lockedexception.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/lock/lockedexception.php b/lib/public/lock/lockedexception.php
index 87f7164b7e0..f8a0221f10b 100644
--- a/lib/public/lock/lockedexception.php
+++ b/lib/public/lock/lockedexception.php
@@ -21,6 +21,12 @@
namespace OCP\Lock;
+/**
+ * Class LockedException
+ *
+ * @package OCP\Lock
+ * @since 8.1.0
+ */
class LockedException extends \Exception {
/**
* @var string
@@ -31,6 +37,7 @@ class LockedException extends \Exception {
* LockedException constructor.
*
* @param string $path
+ * @since 8.1.0
*/
public function __construct($path) {
parent::__construct($path . ' is locked');
@@ -39,6 +46,7 @@ class LockedException extends \Exception {
/**
* @return string
+ * @since 8.1.0
*/
public function getPath() {
return $this->path;