File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 9
9
*
10
10
* Take this exception very serious.
11
11
*
12
- * This exception implies that the critical code was executed, i.e. side effects may have happened.
12
+ * This exception implies that the synchronized code was executed, i.e. side effects may have happened.
13
13
*
14
- * Failing to release a lock might have the potential to introduce deadlocks .
14
+ * Failing to release a lock might also introduce deadlock .
15
15
*/
16
16
class LockReleaseException extends MutexException
17
17
{
@@ -21,8 +21,6 @@ class LockReleaseException extends MutexException
21
21
private ?\Throwable $ codeException = null ;
22
22
23
23
/**
24
- * The return value of the executed critical code.
25
- *
26
24
* @return mixed
27
25
*/
28
26
public function getCodeResult ()
@@ -42,9 +40,6 @@ public function setCodeResult($codeResult): self
42
40
return $ this ;
43
41
}
44
42
45
- /**
46
- * The exception that has happened during the critical code execution.
47
- */
48
43
public function getCodeException (): ?\Throwable
49
44
{
50
45
return $ this ->codeException ;
You can’t perform that action at this time.
0 commit comments