blob: fa4e724d9081f01270b709270b286ddc3a1ddb6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
namespace Icinga\Module\Director\Db\Branch;
class MergeErrorModificationForMissingObject extends MergeError
{
public function prepareMessage()
{
return sprintf(
$this->translate('Cannot apply modification for %s %s, object does not exist'),
$this->getObjectTypeName(),
$this->getNiceObjectName()
);
}
}
|