|
1
|
<?php |
|
2
|
namespace Aws\Retry\Exception; |
|
3
|
|
|
4
|
use Aws\HasMonitoringEventsTrait; |
|
5
|
use Aws\MonitoringEventsInterface; |
|
6
|
|
|
7
|
/** |
|
8
|
* Represents an error interacting with retry configuration
|
|
9
|
*/ |
|
10
|
class ConfigurationException extends \RuntimeException implements |
|
11
|
MonitoringEventsInterface |
|
12
|
{ |
|
13
|
use HasMonitoringEventsTrait; |
|
14
|
} |
|
15
|
|