diff options
author | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 11:16:21 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 11:16:21 -0700 |
commit | 9ae185c18eb06e3ce7e2daea0c61e6f6478bdca9 (patch) | |
tree | ace22189e031f7f78639f743a872d86c3a65eda0 /libs/minify/src/Exceptions/IOException.php | |
parent | 2bf0f99b519aec5b2068a689a8051d88154e3850 (diff) |
Remove dependency on Sass
- Convert *.sass files to vanilla CSS
- Start using CSS variables
- Add PHP minifier
Diffstat (limited to 'libs/minify/src/Exceptions/IOException.php')
-rwxr-xr-x | libs/minify/src/Exceptions/IOException.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libs/minify/src/Exceptions/IOException.php b/libs/minify/src/Exceptions/IOException.php new file mode 100755 index 00000000..b172eb48 --- /dev/null +++ b/libs/minify/src/Exceptions/IOException.php @@ -0,0 +1,21 @@ +<?php +/** + * IO Exception + * + * Please report bugs on https://github.com/matthiasmullie/minify/issues + * + * @author Matthias Mullie <minify@mullie.eu> + * @copyright Copyright (c) 2012, Matthias Mullie. All rights reserved + * @license MIT License + */ +namespace MatthiasMullie\Minify\Exceptions; + +/** + * IO Exception Class + * + * @package Minify\Exception + * @author Matthias Mullie <minify@mullie.eu> + */ +class IOException extends BasicException +{ +} |