mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2025-11-15 20:48:00 +00:00
16 lines
348 B
PHP
16 lines
348 B
PHP
<?php
|
|
namespace Aws\ClientSideMonitoring\Exception;
|
|
|
|
use Aws\HasMonitoringEventsTrait;
|
|
use Aws\MonitoringEventsInterface;
|
|
|
|
|
|
/**
|
|
* Represents an error interacting with configuration for client-side monitoring.
|
|
*/
|
|
class ConfigurationException extends \RuntimeException implements
|
|
MonitoringEventsInterface
|
|
{
|
|
use HasMonitoringEventsTrait;
|
|
}
|