1: <?php 2: 3: namespace PHPFastCGI\FastCGIDaemon\Exception;
4: 5: /**
6: * Thrown AFTER the daemon has been shutdown cleanly. This is used to cleanly
7: * distinguish between other faults that could occur during operation.
8: */ 9: class ShutdownException extends \RuntimeException
10: {
11: }
12: