src/Exceptions/ExitDispatchException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Aol\Atc\Exceptions;

/**
 * This is the only exception that Dispatch::dispatch will not catch. Use it as an
 * escape hatch if you need to exit all the way out of the dispatcher.
 */
class ExitDispatchException extends \Exception
{
}