mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-04-08 21:53:11 +02:00
12 lines
236 B
PHP
12 lines
236 B
PHP
<?php
|
|
namespace Aws\Exception;
|
|
|
|
use Aws\HasMonitoringEventsTrait;
|
|
use Aws\MonitoringEventsInterface;
|
|
|
|
class InvalidRegionException extends \RuntimeException implements
|
|
MonitoringEventsInterface
|
|
{
|
|
use HasMonitoringEventsTrait;
|
|
}
|