mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-06-25 13:07:14 +08:00
19 lines
397 B
PHP
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),
|
|
);
|
|
}
|
|
}
|