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

8 lines
187 B
PHP
Raw Normal View History

2018-08-17 05:48:21 +00:00
<?php namespace Webkul\Theme\Exceptions;
class ThemeNotFound extends \Exception {
public function __construct($themeName) {
parent::__construct("Theme $themeName not Found", 1);
}
}