for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheCodingMachine\CMS\Theme;
use TheCodingMachine\CMS\CMSException;
class CannotHandleThemeDescriptorException extends CMSException implements CannotHandleThemeDescriptorExceptionInterface
{
public static function cannotHandleDescriptorClass(string $themeType): CannotHandleThemeDescriptorException
return new self(sprintf('Cannot handle the theme descriptor class "%s"', $themeType));
}