Initial commit

This commit is contained in:
2024-03-01 14:34:14 +01:00
commit befe5f5d59
15 changed files with 711 additions and 0 deletions

9
src/MessageException.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace NoccyLabs\React\CommandBus;
use RuntimeException;
class MessageException extends RuntimeException implements CommandBusException
{
}