15 lines
254 B
PHP
15 lines
254 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace PhpMqtt\Client\Exceptions;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Exception to be thrown if an MQTT client repository encounters an error.
|
||
|
|
*
|
||
|
|
* @package PhpMqtt\Client\Exceptions
|
||
|
|
*/
|
||
|
|
class RepositoryException extends MqttClientException
|
||
|
|
{
|
||
|
|
}
|