16 lines
323 B
PHP
16 lines
323 B
PHP
<?php
|
|
|
|
namespace Aws\Auth\Exception;
|
|
|
|
use Aws\HasMonitoringEventsTrait;
|
|
use Aws\MonitoringEventsInterface;
|
|
|
|
/**
|
|
* Represents an error when attempting to resolve authentication.
|
|
*/
|
|
class UnresolvedAuthSchemeException extends \RuntimeException implements
|
|
MonitoringEventsInterface
|
|
{
|
|
use HasMonitoringEventsTrait;
|
|
}
|