Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
swedbank-pay-checkout
/
vendor
/
adci
/
full-name-parser
/
src
/
Exception
:
MultipleMatchesException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @file * Class of IncorrectInputException. */ namespace ADCI\FullNameParser\Exception; /** * Exception of incorrect input. * * @package FullNameParser */ class MultipleMatchesException extends NameParsingException { /** * Default message text. * * @var string */ const MESSAGE = "The regex being used has multiple matches."; /** * {@inheritdoc} */ public function __construct($message = null, $code = 0, \Throwable $previous = null) { parent::__construct($message ? $message : self::MESSAGE, $code, $previous); } }