clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
namespace DrupalCodeGenerator\Exception;
/**
* The exception interface for DCG generators.
*
* Use this exception for errors caused by wrong user input or when environment
* does not meet certain requirements. Do not use it for unexpected program
* errors.
*/
interface ExceptionInterface extends \Throwable {
}

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace DrupalCodeGenerator\Exception;
/**
* The runtime exception for DCG commands.
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface {
}

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace DrupalCodeGenerator\Exception;
/**
* Defines exception that should not be rendered.
*/
class SilentException extends \RuntimeException implements ExceptionInterface {
}

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace DrupalCodeGenerator\Exception;
/**
* The unexpected value exception for DCG commands.
*/
class UnexpectedValueException extends \UnexpectedValueException implements ExceptionInterface {
}