mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-05-28 04:34:08 -04:00
LegacyStorage: fix exception message
This commit is contained in:
parent
b63ebad3d6
commit
cdbbabd9ea
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ class LegacyStorage extends Storage
|
|||
$file = $this->currentFilename = $this->getFilename($name);
|
||||
$fh = @fopen($file, 'r');
|
||||
if (! $fh) {
|
||||
throw new SystemPermissionException('Could not open ' . $file);
|
||||
throw new SystemPermissionException('Could not open "%s"', $file);
|
||||
}
|
||||
|
||||
$this->parsing_line_number = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue