Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ConfigurationException.php « Exception « DefaultsMode « src « aws-sdk-php « aws - github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7186a5b8f68f6161d8568b7683d7d2a352fc4cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
namespace Aws\DefaultsMode\Exception;

use Aws\HasMonitoringEventsTrait;
use Aws\MonitoringEventsInterface;

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