10 lines
231 B
PHP
10 lines
231 B
PHP
<?php
|
|
namespace Aws\KafkaConnect\Exception;
|
|
|
|
use Aws\Exception\AwsException;
|
|
|
|
/**
|
|
* Represents an error interacting with the **Managed Streaming for Kafka Connect** service.
|
|
*/
|
|
class KafkaConnectException extends AwsException {}
|