for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace unreal4u\MQTT\Exceptions\Connect;
class IdentifierRejected extends \InvalidArgumentException
{
private $possibleReason = '';
public function fillPossibleReason(string $possibleReason): self
$this->possibleReason = $possibleReason;
return $this;
}
public function getPossibleReason(): string
return $this->possibleReason;