Completed
Push — master ( 38c8ff...90c00b )
by Dmitry
01:29
created

UserException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 3 1
1
<?php
2
3
namespace PHPKitchen\Platform\Exception\Common;
4
5
/**
6
 * Represents
7
 *
8
 * @package PHPKitchen\Platform\Exception\Common
9
 * @author Dmitry Kolodko <[email protected]>
10
 */
11
class UserException extends \Exception {
12
    public function getName() {
13
        return 'User Mistake';
14
    }
15
}