IOException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
/**
3
 * IO Exception
4
 *
5
 * Please report bugs on https://github.com/matthiasmullie/minify/issues
6
 *
7
 * @author Matthias Mullie <[email protected]>
8
 * @copyright Copyright (c) 2012, Matthias Mullie. All rights reserved
9
 * @license MIT License
10
 */
11
namespace MatthiasMullie\Minify\Exceptions;
12
13
/**
14
 * IO Exception Class
15
 *
16
 * @package Minify\Exception
17
 * @author Matthias Mullie <[email protected]>
18
 */
19
class IOException extends BasicException
20
{
21
}
22