summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Retry/Exception/ConfigurationException.php
blob: 0705c2ee9f862b95da45b4ccf042a727af22047d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
namespace Aws\Retry\Exception;

use Aws\HasMonitoringEventsTrait;
use Aws\MonitoringEventsInterface;

/**
 * Represents an error interacting with retry configuration
 */
class ConfigurationException extends \RuntimeException implements
    MonitoringEventsInterface
{
    use HasMonitoringEventsTrait;
}