Completed
Push — release-2.1 ( 121660...f19596 )
by Mathias
09:09
created

BasicException

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php
2
3
namespace MatthiasMullie\Minify\Exceptions;
4
5
use MatthiasMullie\Minify\Exception;
6
7
/**
8
 * @author Matthias Mullie <[email protected]>
9
 */
10
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...
11
{
12
}
13