Repository URL to install this package:
|
Version:
1.0.0 ▾
|
<?php
namespace Modules\Themes\Theme\Exceptions;
class ThemeNotFoundException extends \Exception
{
public function __construct($themeName)
{
$this->message = "Theme [$themeName] is not registered.";
}
}