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
/
fluentform
/
app
/
Services
/
Spout
/
Writer
/
Exception
/
Border
:
InvalidWidthException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Box\Spout\Writer\Exception\Border; use Box\Spout\Writer\Exception\WriterException; use Box\Spout\Writer\Style\BorderPart; class InvalidWidthException extends WriterException { public function __construct($name) { $msg = '%s is not a valid width identifier for a border. Valid identifiers are: %s.'; parent::__construct(sprintf($msg, $name, implode(',', BorderPart::getAllowedWidths()))); } }