Completed
Push — master ( ab7fea...6d922d )
by Matthias
01:19
created

src/Exceptions/BasicException.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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