ConfigurationException.php 339 B

1234567891011121314
  1. <?php
  2. namespace Aws\EndpointDiscovery\Exception;
  3. use Aws\HasMonitoringEventsTrait;
  4. use Aws\MonitoringEventsInterface;
  5. /**
  6. * Represents an error interacting with configuration for endpoint discovery
  7. */
  8. class ConfigurationException extends \RuntimeException implements
  9. MonitoringEventsInterface
  10. {
  11. use HasMonitoringEventsTrait;
  12. }