Open Journal Systems  3.3.0
ClassNotFoundException.php
1 <?php
2 /*
3  * citeproc-php
4  *
5  * @link http://github.com/seboettg/citeproc-php for the source repository
6  * @copyright Copyright (c) 2016 Sebastian Böttger.
7  * @license https://opensource.org/licenses/MIT
8  */
9 
11 
12 use Exception;
13 
23 {
24 
25  public function __construct($class, $code = 0, Exception $previous = null)
26  {
27  parent::__construct("Class \"$class\" could not be found.", $code, $previous);
28  }
29 }
Seboettg\CiteProc\Exception\CiteProcException
Definition: CiteProcException.php:20
Seboettg\CiteProc\Exception\ClassNotFoundException
Definition: ClassNotFoundException.php:22
Seboettg\CiteProc\Exception
Definition: CiteProcException.php:10
Seboettg\CiteProc\Exception\ClassNotFoundException\__construct
__construct($class, $code=0, Exception $previous=null)
Definition: ClassNotFoundException.php:25