- Rename folder Section to Element - Rename folder Exceptions to Exception - Move Section, Header, Footer, Settings to Container folder - Move Element\Footer\PreserveText to Element\PreserveText
20 lines
382 B
PHP
20 lines
382 B
PHP
<?php
|
|
/**
|
|
* PHPWord
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
* @copyright 2014 PHPWord
|
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Exception;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
/**
|
|
* Exception used for when a style value is invalid
|
|
*/
|
|
class InvalidStyleException extends InvalidArgumentException
|
|
{
|
|
}
|