NotFoundException.php 322 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Asset\File;
  7. /**
  8. * Class NotFoundException
  9. *
  10. * Use this exception when file has not been found
  11. *
  12. * @api
  13. * @since 100.0.2
  14. */
  15. class NotFoundException extends \LogicException
  16. {
  17. }