ConfigurationMismatchException.php 352 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Exception;
  7. /**
  8. * @api
  9. * @since 100.1.0
  10. */
  11. class ConfigurationMismatchException extends LocalizedException
  12. {
  13. /**
  14. * @deprecated
  15. */
  16. const AUTHENTICATION_ERROR = 'Configuration mismatch detected.';
  17. }