BasicException
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
 * Basic 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
use MatthiasMullie\Minify\Exception;
14
15
/**
16
 * Basic Exception Class
17
 *
18
 * @package Minify\Exception
19
 * @author Matthias Mullie <[email protected]>
20
 */
21
abstract class BasicException extends Exception
0 ignored issues
show
Deprecated Code introduced by
The class MatthiasMullie\Minify\Exception has been deprecated with message: Use Exceptions\BasicException instead

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
22
{
23
}
24