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

13 lines
241 B
PHP
Raw Normal View History

2018-08-17 05:48:21 +00:00
<?php namespace Webkul\Theme\Exceptions;
2020-02-27 08:03:03 +00:00
class ThemeNotFound extends \Exception
{
2020-03-05 13:37:08 +00:00
/**
* @param string $theme
* @return void
*/
2020-02-27 08:03:03 +00:00
public function __construct($themeName)
{
2018-08-17 05:48:21 +00:00
parent::__construct("Theme $themeName not Found", 1);
}
}