drupal-module-generator/src/Exception/CannotCreateModuleException.php

12 lines
280 B
PHP
Raw Normal View History

<?php
namespace Opdavies\DrupalModuleGenerator\Exception;
2020-02-09 21:27:30 +00:00
final class CannotCreateModuleException extends \RuntimeException
{
public static function directoryAlreadyExists()
{
return new static('The given directory name for the module already exists.');
}
}