ValidationException.php 334 B

123456789101112131415161718
  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 xml is not valid.
  8. */
  9. namespace Magento\Framework\Config\Dom;
  10. /**
  11. * @api
  12. * @since 100.0.2
  13. */
  14. class ValidationException extends \InvalidArgumentException
  15. {
  16. }