GenerationError.php 267 B

12345678910111213141516
  1. <?php
  2. namespace Gregwar\Image\Exceptions;
  3. class GenerationError extends \Exception
  4. {
  5. public function __construct($newNewFile)
  6. {
  7. $this->newNewFile = $newNewFile;
  8. }
  9. public function getNewFile()
  10. {
  11. return $this->newNewFile;
  12. }
  13. }