8 lines
187 B
PHP
8 lines
187 B
PHP
|
|
<?php namespace Webkul\Theme\Exceptions;
|
||
|
|
|
||
|
|
class ThemeNotFound extends \Exception {
|
||
|
|
|
||
|
|
public function __construct($themeName) {
|
||
|
|
parent::__construct("Theme $themeName not Found", 1);
|
||
|
|
}
|
||
|
|
}
|