10 lines
165 B
PHP
10 lines
165 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Diffhead\PHP\LaravelRabbitMQ\Exception;
|
|
|
|
use RuntimeException;
|
|
|
|
class AssociatedEventNotFound extends RuntimeException {}
|