1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Latte;
9:
10: use Nette;
11:
12:
13: /**
14: * The exception occured during Latte compilation.
15: *
16: * @author David Grudl
17: */
18: class CompileException extends Nette\Templating\FilterException
19: {
20: }
21:
22:
23: class_alias('Nette\Latte\CompileException', 'Nette\Latte\ParseException');
24: