Boersenchecker
All checks were successful
Deploy / deploy-staging (push) Successful in 28s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-22 23:29:03 +02:00
parent 616b03474f
commit dc66f75eef
24 changed files with 5151 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
<?php
declare(strict_types=1);
namespace App;
final class ModuleConfigException extends \RuntimeException
{
public function __construct(
public readonly string $moduleName,
string $message,
?string $detail = null,
int $code = 0,
?\Throwable $previous = null
) {
parent::__construct(
$detail !== null && $detail !== '' ? $message . ' ' . $detail : $message,
$code,
$previous
);
}
}