Files
panel/app/Exceptions/Service/Network/AddressInUseException.php
2024-03-04 15:14:12 -06:00

19 lines
397 B
PHP

<?php
namespace Convoy\Exceptions\Service\Network;
use Convoy\Exceptions\DisplayException;
class AddressInUseException extends DisplayException
{
/**
* TooManyBackupsException constructor.
*/
public function __construct(int $addressId)
{
parent::__construct(
sprintf('Address %d is currently in use by another server.', $addressId),
);
}
}