12 lines
234 B
PHP
12 lines
234 B
PHP
|
<?php
|
||
|
namespace Aws\Exception;
|
||
|
|
||
|
use Aws\HasMonitoringEventsTrait;
|
||
|
use Aws\MonitoringEventsInterface;
|
||
|
|
||
|
class CredentialsException extends \RuntimeException implements
|
||
|
MonitoringEventsInterface
|
||
|
{
|
||
|
use HasMonitoringEventsTrait;
|
||
|
}
|