symplely/coroutine

View on GitHub
Coroutine/Exceptions/QueueEmpty.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Async;

use Async\RuntimeException;

/**
 * Throws when `Queue::get_nowait()` is called on an **empty** `Queue`.
 */
class QueueEmpty extends RuntimeException
{
}