mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
16 lines
325 B
PHP
16 lines
325 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Db\Branch;
|
|
|
|
class MergeErrorRecreateOnMerge extends MergeError
|
|
{
|
|
public function prepareMessage()
|
|
{
|
|
return sprintf(
|
|
$this->translate('Cannot recreate %s %s'),
|
|
$this->getObjectTypeName(),
|
|
$this->getNiceObjectName()
|
|
);
|
|
}
|
|
}
|