summaryrefslogtreecommitdiffstats
path: root/library/Director/Db/Branch/MergeErrorDeleteMissingObject.php
blob: 71f89d144c3dc1b4032f9c630deb10a1dc771e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace Icinga\Module\Director\Db\Branch;

class MergeErrorDeleteMissingObject extends MergeError
{
    public function prepareMessage()
    {
        return sprintf(
            $this->translate('Cannot delete %s %s, it does not exist'),
            $this->getObjectTypeName(),
            $this->getNiceObjectName()
        );
    }
}