ValidationSchemaException.php 385 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Exception that should be thrown by DOM model when incoming xsd is not valid.
  8. */
  9. namespace Magento\Framework\Config\Dom;
  10. use Magento\Framework\Exception\LocalizedException;
  11. /**
  12. * @api
  13. * @since 101.0.0
  14. */
  15. class ValidationSchemaException extends LocalizedException
  16. {
  17. }