1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 18:47:50 +01:00
parallel/lib/ChannelException.php
Aaron Piotrowski da84a772cf Port to Amp
2016-08-18 11:04:48 -05:00

10 lines
219 B
PHP

<?php
namespace Amp\Concurrent;
class ChannelException extends \Exception {
public function __construct(string $message, \Throwable $previous = null) {
parent::__construct($message, 0, $previous);
}
}