Files
Grav/vendor/gregwar/image/Gregwar/Image/Exceptions/GenerationError.php
Djamil Legato 230a2b594e Source
2014-08-02 12:12:32 -07:00

17 lines
267 B
PHP

<?php
namespace Gregwar\Image\Exceptions;
class GenerationError extends \Exception
{
public function __construct($newNewFile)
{
$this->newNewFile = $newNewFile;
}
public function getNewFile()
{
return $this->newNewFile;
}
}