Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
webbingbrasil/themes-module / Theme / Exceptions / ThemeNotFoundException.php
Size: Mime:
<?php

namespace Modules\Themes\Theme\Exceptions;

class ThemeNotFoundException extends \Exception
{
    public function __construct($themeName)
    {
        $this->message = "Theme [$themeName] is not registered.";
    }
}