XmpException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 0
c 2
b 0
f 1
lcom 0
cbo 0
dl 0
loc 4
1
<?php
2
3
/*
4
 * This file is part of the kaloa/xmp package.
5
 *
6
 * For full copyright and license information, please view the LICENSE file
7
 * that was distributed with this source code.
8
 */
9
10
namespace Kaloa\Xmp;
11
12
use Exception;
13
14
/**
15
 * Type-hintable base exception for this component.
16
 */
17
class XmpException extends Exception
18
{
19
20
}
21