File "InvalidNameException.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/app/Services/Spout/Writer/Exception/Border/InvalidNameException.php
File size: 437 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Box\Spout\Writer\Exception\Border;
use Box\Spout\Writer\Exception\WriterException;
use Box\Spout\Writer\Style\BorderPart;
class InvalidNameException extends WriterException
{
public function __construct($name)
{
$msg = '%s is not a valid name identifier for a border. Valid identifiers are: %s.';
parent::__construct(sprintf($msg, $name, implode(',', BorderPart::getAllowedNames())));
}
}