src/Exceptions/CompilationException.php
<?php /** File containing exception CompilationException */
/*
* This file is part of the TeX Tools for PHP component.
*
* (c) Konstantin S. M. Möllers <ksm.moellers@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CornyPhoenix\Tex\Exceptions;
use Exception;
/**
* Exception for errors during compilation.
*
* @package CornyPhoenix\Tex\Exceptions
*/
class CompilationException extends Exception
{
}