File: /home/accemeff/vendor/craftcms/cms/src/web/twig/TemplateLoaderException.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\web\twig;
/**
* Class TemplateLoaderException
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class TemplateLoaderException extends \Twig_Error_Loader
{
// Properties
// =========================================================================
/**
* @var string|null
*/
public $template;
// Public Methods
// =========================================================================
/**
* @param string $template The requested template
* @param string $message The exception message
*/
public function __construct(string $template, string $message)
{
$this->template = $template;
parent::__construct($message);
}
}