Completed
Pull Request — master (#364)
by Alessandro
04:31
created

Event::getException()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
/*
4
 * This file is part of the FOSHttpCache package.
5
 *
6
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace FOS\HttpCache;
13
14
use Symfony\Component\EventDispatcher\Event as BaseEvent;
15
16
class Event extends BaseEvent
17
{
18
    private $exception;
19
20
    /**
21
     * Set exception.
22
     *
23
     * @param \Exception $exception
24
     */
25
    public function setException(\Exception $exception)
26
    {
27
        $this->exception = $exception;
28
    }
29
30
    /**
31
     * Get exception.
32
     *
33
     * @return \Exception
34
     */
35
    public function getException()
36
    {
37
        return $this->exception;
38
    }
39
}
40