# xspeed/1.3.4/vendor/matthiasmullie/minify/src/Exceptions/PatternMatchException.php

xSpeed Cache: AI-Powered Performance Hub with MCP, Caching &amp; CDN, version 1.3.4. 37 lines.

- Page: https://pluginprobe.com/plugins/xspeed/1.3.4/code/vendor/matthiasmullie/minify/src/Exceptions/PatternMatchException.php
- Raw: https://pluginprobe.com/plugins/xspeed/1.3.4/raw/vendor/matthiasmullie/minify/src/Exceptions/PatternMatchException.php
- Modified: 2026-06-02T05:31:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/xspeed/1.3.4/code/vendor/matthiasmullie/minify/src/Exceptions/PatternMatchException.php#L10-L20`.

```php
<?php

/**
 * Pattern match exception.
 *
 * Please report bugs on https://github.com/matthiasmullie/minify/issues
 *
 * @author Ere Maijala <ere.maijala@helsinki.fi>
 * @copyright Copyright (c) 2012, Matthias Mullie. All rights reserved
 * @license MIT License
 */

namespace MatthiasMullie\Minify\Exceptions;

/**
 * Pattern Match Exception Class.
 *
 * @author Ere Maijala <ere.maijala@helsinki.fi>
 */
class PatternMatchException extends BasicException
{
    /**
     * Create an exception from preg_last_error.
     *
     * @param string $msg Error message
     */
    public static function fromLastError($msg)
    {
        $msg .= ': Error ' . preg_last_error();
        if (PHP_MAJOR_VERSION >= 8) {
            $msg .= ' - ' . preg_last_error_msg();
        }

        return new PatternMatchException($msg);
    }
}

```
