Fix OCS Exception

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2017-07-20 16:25:57 +02:00
parent ede15f0988
commit a5feb51a6a
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}