18 lines
333 B
PHP
18 lines
333 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;
|
|
|
|
/**
|
|
* Exception used for when an image is not found
|
|
*/
|
|
class InvalidImageException extends Exception
|
|
{
|
|
}
|