Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exceptionplugin.php « requesttest « sabre « connector « unit « tests « dav « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 606b5a279842d5d4f1512e657d095c432dec0268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
 * Copyright (c) 2015 Robin Appelman <icewind@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace Test\Connector\Sabre\RequestTest;

use Sabre\DAV\Exception;

class ExceptionPlugin extends \OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin {
	/**
	 * @var \Exception[]
	 */
	protected $exceptions = [];

	public function logException(\Exception $ex) {
		$exceptionClass = get_class($ex);
		if (!isset($this->nonFatalExceptions[$exceptionClass])) {
			$this->exceptions[] = $ex;
		}
	}

	/**
	 * @return \Exception[]
	 */
	public function getExceptions() {
		return $this->exceptions;
	}
}