Fix OCS Exception

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/5847/head
Roeland Jago Douma 9 years ago
parent ede15f0988
commit a5feb51a6a
No known key found for this signature in database
GPG Key ID: F941078878347C0C
  1. 4
      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;
}

Loading…
Cancel
Save