From dbc9737136801e0fa3c40a8862df8a54c6b987a8 Mon Sep 17 00:00:00 2001 From: Roman Syroeshko Date: Wed, 2 Jul 2014 12:58:55 +0400 Subject: [PATCH] [NEW] Introduced CreateTemporaryFileException. --- src/PhpWord/Exception/CreateTemporaryFileException.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/PhpWord/Exception/CreateTemporaryFileException.php b/src/PhpWord/Exception/CreateTemporaryFileException.php index f635dd6b..9cddb7ac 100644 --- a/src/PhpWord/Exception/CreateTemporaryFileException.php +++ b/src/PhpWord/Exception/CreateTemporaryFileException.php @@ -24,7 +24,8 @@ final class CreateTemporaryFileException extends Exception { protected $message = 'Could not create a temporary file with unique name in the specified directory.'; - final public function __construct() { + final public function __construct() + { parent::__construct($this->message); } }