File "LastNameNotFoundException.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/swedbank-pay-payments/vendor/adci/full-name-parser/src/Exception/LastNameNotFoundException.php
File size: 588 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @file
* Class of LastNameNotFoundException.
*/
namespace ADCI\FullNameParser\Exception;
/**
* Exception last name not found.
*
* @package FullNameParser
*/
class LastNameNotFoundException extends NameParsingException
{
/**
* Default message text.
*
* @var string
*/
const MESSAGE = "Couldn't find a last name.";
/**
* {@inheritdoc}
*/
public function __construct($message = null, $code = 0, \Throwable $previous = null)
{
parent::__construct($message ? $message : self::MESSAGE, $code, $previous);
}
}