symplely/coroutine

View on GitHub
Coroutine/Exceptions/QueueFull.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Async;

use Async\RuntimeException;

/**
 * Throws when the `Queue::put_nowait()` method is called on a **full** `Queue`.
 */
class QueueFull extends RuntimeException
{
}