18 lines
380 B
PHP
18 lines
380 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the BibTex Parser.
|
|
*
|
|
* (c) Renan de Lima Barbosa <renandelima@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace RenanBr\BibTexParser\Exception;
|
|
|
|
use Exception;
|
|
|
|
class ProcessorException extends Exception implements ExceptionInterface
|
|
{
|
|
}
|