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

9 lines
187 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
{
public function __construct($themeName)
{
2018-08-17 05:48:21 +00:00
parent::__construct("Theme $themeName not Found", 1);
}
}