for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Onoi\EventDispatcher\Exception;
use RuntimeException;
/**
* @license GNU GPL v2+
* @since 1.1
*
* @author mwjames
*/
class EventNotDispatchableException extends RuntimeException {
* @param string $event
public function __construct( $event ) {
parent::__construct( "Event delegation failed due to missing listeners for the `$event` event!" );
}