Starting actors populate

This commit is contained in:
thibaud-leclere
2026-01-15 14:01:45 +01:00
parent be171b45b4
commit dcc47fcb65
5 changed files with 95 additions and 24 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Exception;
class GatewayException extends \Exception
{
public function __construct(
public string $gateway { get => $this->gateway; },
string $message = '',
?\Throwable $previous = null,
)
{
parent::__construct($message, previous: $previous);
}
}