t-regx/T-Regx

View on GitHub
src/CleanRegex/Exception/SubjectNotMatchedException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace TRegx\CleanRegex\Exception;

/**
 * @deprecated
 */
class SubjectNotMatchedException extends \RuntimeException implements PatternException
{
    public function __construct()
    {
        parent::__construct('Expected to get the first match, but subject was not matched');
    }
}