Completed
Push — master ( 27c704...6c81e9 )
by vistart
05:43
created

RemovePreventedException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 1
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
1
<?php
2
3
/**
4
 *  _   __ __ _____ _____ ___  ____  _____
5
 * | | / // // ___//_  _//   ||  __||_   _|
6
 * | |/ // /(__  )  / / / /| || |     | |
7
 * |___//_//____/  /_/ /_/ |_||_|     |_|
8
 * @link https://vistart.me/
9
 * @copyright Copyright (c) 2016 - 2017 vistart
10
 * @license https://vistart.me/license/
11
 */
12
13
namespace rhosocial\organization\exceptions;
14
15
use yii\web\UnauthorizedHttpException;
16
17
/**
18
 * Class RemovePreventedException
19
 * @package rhosocial\organization\exceptions
20
 * @version 1.0
21
 * @author vistart <[email protected]>
22
 */
23
class RemovePreventedException extends UnauthorizedHttpException
24
{
25
    public function getName()
26
    {
27
        return 'RemovePreventedException';
28
    }
29
}
30