BasicException.php 499 B

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