| 1 | <?php |
||
| 5 | class DomainEventNotUnderstandableException extends \Exception |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @param string $aggregateType |
||
| 9 | * @param string $eventType |
||
| 10 | * @param int $code |
||
| 11 | * @param \Exception|null $previous |
||
| 12 | * @return DomainEventNotUnderstandableException |
||
| 13 | */ |
||
| 14 | 1 | public static function fromAggreagteAndEventTypes($aggregateType, $eventType, $code = 0, \Exception $previous = null) |
|
| 26 | } |
||
| 27 |