1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 22:11:11 +01:00
parallel/lib/ChannelException.php

10 lines
246 B
PHP
Raw Normal View History

2016-08-21 23:40:48 -05:00
<?php declare(strict_types = 1);
2015-08-03 00:29:41 -05:00
2016-08-18 11:04:48 -05:00
namespace Amp\Concurrent;
class ChannelException extends \Exception {
public function __construct(string $message, \Throwable $previous = null) {
2015-12-05 00:54:15 -06:00
parent::__construct($message, 0, $previous);
}
2015-08-03 00:29:41 -05:00
}