InvalidScopeException.php 308 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @author David Desberg <david@daviddesberg.com>
  4. * Released under the MIT license.
  5. */
  6. namespace OAuth\OAuth2\Service\Exception;
  7. use OAuth\Common\Exception\Exception;
  8. /**
  9. * Exception thrown when a scope provided to a service is invalid.
  10. */
  11. class InvalidScopeException extends Exception
  12. {
  13. }