[NEW] Introduced CreateTemporaryFileException.

This commit is contained in:
Roman Syroeshko 2014-07-02 12:58:55 +04:00
parent ea826ec0ce
commit dbc9737136
1 changed files with 2 additions and 1 deletions

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.';
final public function __construct() {
final public function __construct()
{
parent::__construct($this->message);
}
}