dedijk4/vendor/gregwar/image/Gregwar/Image/Exceptions/GenerationError.php

17 lines
267 B
PHP
Raw Normal View History

2020-02-19 16:42:35 +01:00
<?php
namespace Gregwar\Image\Exceptions;
class GenerationError extends \Exception
{
public function __construct($newNewFile)
{
$this->newNewFile = $newNewFile;
}
public function getNewFile()
{
return $this->newNewFile;
}
}