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