File "NameParsingException.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/swedbank-pay-payments/vendor/adci/full-name-parser/src/Exception/NameParsingException.php
File size: 613 bytes
MIME-type: text/x-php
Charset: utf-8
<?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);
}
}