mirror of
https://github.com/getgrav/grav.git
synced 2026-03-06 20:41:36 +01:00
17 lines
267 B
PHP
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;
|
|
}
|
|
}
|