Fix OCS Exception
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
ede15f0988
commit
a5feb51a6a
1 changed files with 4 additions and 0 deletions
|
@ -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…
Reference in a new issue