Browse Source
Fix OCS Exception
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/5847/head
Roeland Jago Douma
9 years ago
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with
4 additions and
0 deletions
-
lib/private/OCS/Exception.php
|
|
|
@ -25,7 +25,11 @@ namespace OC\OCS; |
|
|
|
|
|
|
|
class Exception extends \Exception { |
|
|
|
|
|
|
|
/** @var Result */ |
|
|
|
private $result; |
|
|
|
|
|
|
|
public function __construct(Result $result) { |
|
|
|
parent::__construct(); |
|
|
|
$this->result = $result; |
|
|
|
} |
|
|
|
|
|
|
|
|