Completed
Push — 2.1 ( 8ecc36...9546bd )
by Alexander
13:31
created

SyncException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 11
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
1
<?php
2
/**
3
 * @link http://www.yiiframework.com/
4
 * @copyright Copyright (c) 2008 Yii Software LLC
5
 * @license http://www.yiiframework.com/license/
6
 */
7
8
namespace yii\mutex;
9
10
use yii\base\Exception;
11
12
/**
13
 * Synchronize Exception
14
 *
15
 * @author Roman Zhuravlev <[email protected]>
16
 * @since 2.1
17
 */
18
class SyncException extends Exception
19
{
20
    /**
21
     * @inheritdoc
22
     */
23
    public function getName()
24
    {
25
        return 'Synchronize Exception';
26
    }
27
28
}
29