sarga/packages/Webkul/Theme/src/Exceptions/ThemeNotFound.php

13 lines
241 B
PHP
Executable File

<?php namespace Webkul\Theme\Exceptions;
class ThemeNotFound extends \Exception
{
/**
* @param string $theme
* @return void
*/
public function __construct($themeName)
{
parent::__construct("Theme $themeName not Found", 1);
}
}