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-payments
/
vendor
/
adci
/
full-name-parser
/
src
/
Exception
:
NameParsingException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @file * Class of NameParsingException. */ namespace ADCI\FullNameParser\Exception; /** * Any exception for name parsing. * * @package FullNameParser */ class NameParsingException extends \Exception { /** * NameParsingException constructor. * * @param string $message * Message of error. * @param int $code * Code of error. * @param \Throwable|null $previous * Previously chained error. */ public function __construct($message, $code = 0, \Throwable $previous = null) { parent::__construct($message, $code, $previous); } }