AuthorizationException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 1
c 1
b 0
f 0
dl 0
loc 2
1
<?php
2
0 ignored issues
show
Coding Style introduced by
Missing file doc comment
Loading history...
3
namespace DMT\Insolvency\Exception;
4
5
use InvalidArgumentException;
6
7
/**
8
 * Class AuthorizationException
9
 *
10
 * Thrown on several authorization problems, like missing or incorrect credentials.
11
 */
0 ignored issues
show
Coding Style introduced by
Missing @category tag in class comment
Loading history...
Coding Style introduced by
Missing @package tag in class comment
Loading history...
Coding Style introduced by
Missing @author tag in class comment
Loading history...
Coding Style introduced by
Missing @license tag in class comment
Loading history...
Coding Style introduced by
Missing @link tag in class comment
Loading history...
12
class AuthorizationException extends InvalidArgumentException implements Exception
13
{
14
15
}
16