Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
#45 Fix Exception argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Kleinhans committed Nov 23, 2016
1 parent 5cea8fa commit e450c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StackFormation/Exception/TreePreProcessorException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ class TreePreProcessorException extends \Exception
public function __construct(Template $template, \Exception $previous = null)
{
// TODO
parent::__construct($this->getFilePath(), 1, $previous);
parent::__construct($template->getFilePath(), 1, $previous);
}
}

0 comments on commit e450c27

Please sign in to comment.