src/Exceptions/LogicException.php
<?php /** File containing exception LogicException */
/*
* 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 logical errors.
*
* @package CornyPhoenix\Tex\Exceptions
*/
class LogicException extends Exception
{
}