Subversion Repositories oidplus

Rev

Rev 597 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
597 daniel-mar 1
<?php
1042 daniel-mar 2
 
597 daniel-mar 3
/**
1042 daniel-mar 4
 * Basic exception.
597 daniel-mar 5
 *
6
 * Please report bugs on https://github.com/matthiasmullie/minify/issues
7
 *
8
 * @author Matthias Mullie <minify@mullie.eu>
9
 * @copyright Copyright (c) 2012, Matthias Mullie. All rights reserved
10
 * @license MIT License
11
 */
1042 daniel-mar 12
 
597 daniel-mar 13
namespace MatthiasMullie\Minify\Exceptions;
14
 
15
use MatthiasMullie\Minify\Exception;
16
 
17
/**
1042 daniel-mar 18
 * Basic Exception Class.
597 daniel-mar 19
 *
20
 * @author Matthias Mullie <minify@mullie.eu>
21
 */
22
abstract class BasicException extends Exception
23
{
24
}