AOEpeople/StackFormation

View on GitHub
src/StackFormation/TemplateDecodeException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace StackFormation;

class TemplateDecodeException extends \Exception
{
    protected $templateFile;

    public function __construct($templateFile, $message, \Exception $previous = null)
    {
        parent::__construct($message, 0, $previous);

        $this->templateFile = $templateFile;
    }

    public function getTemplateFile()
    {
        return $this->templateFile;
    }
}