Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
/*
4
 * This file is part of composer/pcre.
5
 *
6
 * (c) Composer <https://github.com/composer>
7
 *
8
 * For the full copyright and license information, please view
9
 * the LICENSE file that was distributed with this source code.
10
 */
11
 
12
namespace Composer\Pcre;
13
 
14
class UnexpectedNullMatchException extends PcreException
15
{
16
    public static function fromFunction($function, $pattern)
17
    {
18
        throw new \LogicException('fromFunction should not be called on '.self::class.', use '.PcreException::class);
19
    }
20
}