Files
panel/app/Exceptions/Service/Network/AddressInUseException.php
2022-10-22 16:45:27 +00:00

19 lines
394 B
PHP

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