UnresolvedAuthSchemeException.php 323 B

123456789101112131415
  1. <?php
  2. namespace Aws\Auth\Exception;
  3. use Aws\HasMonitoringEventsTrait;
  4. use Aws\MonitoringEventsInterface;
  5. /**
  6. * Represents an error when attempting to resolve authentication.
  7. */
  8. class UnresolvedAuthSchemeException extends \RuntimeException implements
  9. MonitoringEventsInterface
  10. {
  11. use HasMonitoringEventsTrait;
  12. }