Files
oficial/cli/src/Exception/MQTT/Read.php
2025-07-15 19:04:19 -04:00

16 lines
333 B
PHP

<?php
namespace Incoviba\Exception\MQTT;
use Throwable;
use Incoviba\Exception\MQTT;
class Read extends MQTT
{
public function __construct(string $tube, ?Throwable $previous = null)
{
$message = "Error reading from tube {$tube}";
$code = 10;
parent::__construct($message, $code, $previous);
}
}