From cdbbabd9ea79b394e5e018120ae87d31f9657c24 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 1 Oct 2015 22:38:43 +0200 Subject: [PATCH] LegacyStorage: fix exception message --- library/Businessprocess/Storage/LegacyStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Businessprocess/Storage/LegacyStorage.php b/library/Businessprocess/Storage/LegacyStorage.php index c330cc7..2fd7d45 100644 --- a/library/Businessprocess/Storage/LegacyStorage.php +++ b/library/Businessprocess/Storage/LegacyStorage.php @@ -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;