Verified Commit 0caa9faa authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(webservice) Fix empty message in WebServiceLockError

issue #6082
Showing with 1 addition and 0 deletions
+1 -0
...@@ -30,6 +30,7 @@ class WebServiceLockError extends WebServiceError ...@@ -30,6 +30,7 @@ class WebServiceLockError extends WebServiceError
public function __construct (string $message, string $lockedDn, string $lockAuthor, int $code = 0, Throwable $previous = NULL) public function __construct (string $message, string $lockedDn, string $lockAuthor, int $code = 0, Throwable $previous = NULL)
{ {
parent::__construct($message, $code, $previous);
$this->lockedDn = $lockedDn; $this->lockedDn = $lockedDn;
$this->lockAuthor = $lockAuthor; $this->lockAuthor = $lockAuthor;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment