mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-03-05 22:49:48 +01:00
16 lines
452 B
PHP
16 lines
452 B
PHP
<?php
|
|
|
|
/**
|
|
* @see https://github.com/laminas/laminas-loader for the canonical source repository
|
|
* @copyright https://github.com/laminas/laminas-loader/blob/master/COPYRIGHT.md
|
|
* @license https://github.com/laminas/laminas-loader/blob/master/LICENSE.md New BSD License
|
|
*/
|
|
|
|
namespace Laminas\Loader\Exception;
|
|
|
|
require_once __DIR__ . '/ExceptionInterface.php';
|
|
|
|
class InvalidPathException extends \Exception implements ExceptionInterface
|
|
{
|
|
}
|