[NEW] Introduced CreateTemporaryFileException.

This commit is contained in:
Roman Syroeshko 2014-07-02 12:58:55 +04:00
parent ea826ec0ce
commit dbc9737136

View File

@ -24,7 +24,8 @@ final class CreateTemporaryFileException extends Exception
{ {
protected $message = 'Could not create a temporary file with unique name in the specified directory.'; 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); parent::__construct($this->message);
} }
} }