1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 22:11:11 +01:00
parallel/lib/ChannelException.php
2016-08-21 23:40:48 -05:00

10 lines
246 B
PHP

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