Exception.php 307 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Oauth;
  7. use Magento\Framework\Exception\AuthenticationException;
  8. /**
  9. * OAuth Exception
  10. *
  11. * @api
  12. * @since 100.0.2
  13. */
  14. class Exception extends AuthenticationException
  15. {
  16. }