AuthorizationException.php 395 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Authorization service 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 AuthorizationException extends LocalizedException
  14. {
  15. /**
  16. * @deprecated
  17. */
  18. const NOT_AUTHORIZED = "The consumer isn't authorized to access %resources.";
  19. }