ErrorHandlerInterface.php 431 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Css\PreProcessor;
  7. /**
  8. * Error handler interface
  9. */
  10. interface ErrorHandlerInterface
  11. {
  12. /**
  13. * Process an exception which was thrown during processing dynamic instructions
  14. *
  15. * @param \Exception $e
  16. * @return void
  17. */
  18. public function processException(\Exception $e);
  19. }