mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2025-11-15 04:28:01 +00:00
15 lines
339 B
PHP
15 lines
339 B
PHP
<?php
|
|
namespace Aws\EndpointDiscovery\Exception;
|
|
|
|
use Aws\HasMonitoringEventsTrait;
|
|
use Aws\MonitoringEventsInterface;
|
|
|
|
/**
|
|
* Represents an error interacting with configuration for endpoint discovery
|
|
*/
|
|
class ConfigurationException extends \RuntimeException implements
|
|
MonitoringEventsInterface
|
|
{
|
|
use HasMonitoringEventsTrait;
|
|
}
|