AuthenticationException.php 398 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Authentication exception
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Exception;
  9. /**
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class AuthenticationException extends LocalizedException
  14. {
  15. /**
  16. * @deprecated
  17. */
  18. const AUTHENTICATION_ERROR = 'An authentication error occurred. Verify and try again.';
  19. }